* Added patchelf.
svn path=/nixpkgs/trunk/; revision=1505
This commit is contained in:
parent
b46f1539d0
commit
8cbdcb4b03
10
pkgs/development/tools/misc/patchelf/default.nix
Normal file
10
pkgs/development/tools/misc/patchelf/default.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "patchelf-0.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://catamaran.labs.cs.uu.nl/dist/nix/patchelf-0.1pre1501/patchelf-0.1pre1501.tar.gz;
|
||||||
|
md5 = "b3d82ce1dc68304770fe5411ed718e3a";
|
||||||
|
};
|
||||||
|
# src = /home/eelco/Dev/patchelf/patchelf-0.1.tar.gz;
|
||||||
|
}
|
@ -167,6 +167,10 @@ rec {
|
|||||||
inherit fetchurl stdenv noSysDirs;
|
inherit fetchurl stdenv noSysDirs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patchelf = (import ../development/tools/misc/patchelf) {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
gnum4 = (import ../development/tools/misc/gnum4) {
|
gnum4 = (import ../development/tools/misc/gnum4) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user