nixpkgs/pkgs/development/tools/misc/patchelf/default.nix

10 lines
214 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "patchelf-0.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/nix/patchelf-0.1/patchelf-0.1.tar.bz2;
md5 = "bc20c173bf8bd590fa8ee0f348a563be";
};
}