3
0
Fork 0
forked from mirrors/nixpkgs

Stalin: Add dependency on ncompress.

svn path=/nixpkgs/trunk/; revision=20713
This commit is contained in:
Ludovic Courtès 2010-03-17 14:44:46 +00:00
parent dd5de51265
commit d5c0333db8
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, libX11 }:
{ fetchurl, stdenv, ncompress, libX11 }:
stdenv.mkDerivation rec {
name = "stalin-0.11";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0lz8riccpigdixwf6dswwva6s4kxaz3dzxhkqhcxgwmffy30vw8s";
};
buildInputs = [ libX11 ];
buildInputs = [ ncompress libX11 ];
buildPhase = '' ./build '';

View file

@ -2414,7 +2414,7 @@ let
};
stalin = import ../development/compilers/stalin {
inherit stdenv fetchurl;
inherit stdenv fetchurl ncompress;
inherit (xlibs) libX11;
};