summary refs log tree commit diff
path: root/pkgs/development/tools/misc/patchelf/default.nix
blob: da51f3acac8c40a3af8ca135471011056d766152 (plain) (blame)
1
2
3
4
5
6
7
8
9
{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";
  };
}