mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Stalin: Add dependency on ncompress.
svn path=/nixpkgs/trunk/; revision=20713
This commit is contained in:
parent
dd5de51265
commit
d5c0333db8
2 changed files with 3 additions and 3 deletions
|
@ -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 '';
|
||||
|
||||
|
|
|
@ -2414,7 +2414,7 @@ let
|
|||
};
|
||||
|
||||
stalin = import ../development/compilers/stalin {
|
||||
inherit stdenv fetchurl;
|
||||
inherit stdenv fetchurl ncompress;
|
||||
inherit (xlibs) libX11;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue