mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
I had broken a reference - Fixing the nixpkgs tarball
svn path=/nixpkgs/trunk/; revision=22288
This commit is contained in:
parent
57c012a16c
commit
3218d7e6bc
|
@ -1,7 +1,5 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gnome, cairo, ghc, mtl }:
|
||||
|
||||
let gtksourceview = gnome.gtksourceview_24; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gtk2hs";
|
||||
version = "0.10.0";
|
||||
|
@ -17,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
pkgconfig cairo ghc gnome.glib gnome.gtk gnome.libglade
|
||||
gnome.GConf gtksourceview gnome.librsvg
|
||||
gnome.GConf gnome.gtksourceview gnome.librsvg
|
||||
];
|
||||
|
||||
preConfigure =
|
||||
|
@ -42,5 +40,5 @@ stdenv.mkDerivation rec {
|
|||
done
|
||||
''; # */
|
||||
|
||||
passthru = { inherit gtksourceview; };
|
||||
passthru = { inherit (gnome) gtksourceview; };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue