summary refs log tree commit diff
path: root/pkgs/development/tools/misc/elfutils/default.nix
blob: c4eae60c86b4951816a1486cd142b66910e41b44 (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "elfutils-0.127";
  src = fetchurl {
    url = http://ftp.cs.pu.edu.tw/Linux/sourceware/systemtap/elfutils/elfutils-0.127.tar.gz;
    sha256 = "12n3h5r3c24a6l2wxz0w2dqq072bvgms0dzckivrwp5vdn22lpdv";
  };
}