mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
e2fsprogs: drop the gettext dependency.
svn path=/nixpkgs/trunk/; revision=10992
This commit is contained in:
parent
f0d8899756
commit
f41df276c6
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, gettext}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "e2fsprogs-1.40.7";
|
name = "e2fsprogs-1.40.7";
|
||||||
@ -10,7 +10,6 @@ stdenv.mkDerivation {
|
|||||||
if stdenv ? isDietLibC
|
if stdenv ? isDietLibC
|
||||||
then ""
|
then ""
|
||||||
else "--enable-elf-shlibs";
|
else "--enable-elf-shlibs";
|
||||||
#buildInputs = [gettext];
|
|
||||||
preInstall = "installFlagsArray=('LN=ln -s')";
|
preInstall = "installFlagsArray=('LN=ln -s')";
|
||||||
#postInstall = "make install-libs";
|
#postInstall = "make install-libs";
|
||||||
NIX_CFLAGS_COMPILE =
|
NIX_CFLAGS_COMPILE =
|
||||||
|
@ -3908,7 +3908,7 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
e2fsprogs = import ../os-specific/linux/e2fsprogs {
|
e2fsprogs = import ../os-specific/linux/e2fsprogs {
|
||||||
inherit fetchurl stdenv gettext;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
e2fsprogsDiet = lowPrio (appendToName "diet" (import ../os-specific/linux/e2fsprogs {
|
e2fsprogsDiet = lowPrio (appendToName "diet" (import ../os-specific/linux/e2fsprogs {
|
||||||
|
Loading…
Reference in New Issue
Block a user