1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/development/tools/misc/elfkickers/default.nix

24 lines
657 B
Nix
Raw Normal View History

2017-06-12 20:56:28 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "elfkickers";
2019-11-27 16:28:25 +00:00
version = "3.1a";
2017-06-12 20:56:28 +01:00
src = fetchurl {
url = "http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-${version}.tar.gz";
2019-11-27 16:28:25 +00:00
sha256 = "02354yn1lh1dxny35ky2d0b44iq302krsqpwk5grr4glma00hhq6";
2017-06-12 20:56:28 +01:00
};
makeFlags = [ "CC=cc prefix=$(out)" ];
enableParallelBuilding = true;
2017-06-12 20:56:28 +01:00
meta = with stdenv.lib; {
homepage = "http://www.muppetlabs.com/~breadbox/software/elfkickers.html";
2017-06-12 20:56:28 +01:00
description = "A collection of programs that access and manipulate ELF files";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = [ maintainers.dtzWill ];
};
}