mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
Add latest patchelf prerelease
This commit is contained in:
parent
e3605e7e76
commit
d7fc07705a
16
pkgs/development/tools/misc/patchelf/unstable.nix
Normal file
16
pkgs/development/tools/misc/patchelf/unstable.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "patchelf-0.7pre160_1c057cd";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://hydra.nixos.org/build/2961500/download/2/patchelf-0.7pre160_1c057cd.tar.bz2;
|
||||||
|
sha256 = "bbc46169f6b6803410e0072cf57e631481e3d5f1dde234f4eacbccb6562c5f4f";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://nixos.org/patchelf.html;
|
||||||
|
license = "GPL";
|
||||||
|
description = "A small utility to modify the dynamic linker and RPATH of ELF executables";
|
||||||
|
};
|
||||||
|
}
|
@ -3137,6 +3137,8 @@ let
|
|||||||
|
|
||||||
patchelf = callPackage ../development/tools/misc/patchelf { };
|
patchelf = callPackage ../development/tools/misc/patchelf { };
|
||||||
|
|
||||||
|
patchelfUnstable = callPackage ../development/tools/misc/patchelf/unstable.nix { };
|
||||||
|
|
||||||
peg = callPackage ../development/tools/parsing/peg { };
|
peg = callPackage ../development/tools/parsing/peg { };
|
||||||
|
|
||||||
pmccabe = callPackage ../development/tools/misc/pmccabe { };
|
pmccabe = callPackage ../development/tools/misc/pmccabe { };
|
||||||
|
Loading…
Reference in New Issue
Block a user