mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
elfkickers: init at 3.1
This commit is contained in:
parent
0bffe03828
commit
ab9d244348
23
pkgs/development/tools/misc/elfkickers/default.nix
Normal file
23
pkgs/development/tools/misc/elfkickers/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "elfkickers-${version}";
|
||||
version = "3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.muppetlabs.com/~breadbox/pub/software/ELFkickers-${version}.tar.gz";
|
||||
sha256 = "0n0sypjrdm3ramv0sby4sdh3i3j9d0ihadr951wa08ypdnq3yrkd";
|
||||
};
|
||||
|
||||
makeFlags = [ "CC=cc prefix=$(out)" ];
|
||||
|
||||
enableParallelBuildingg = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.muppetlabs.com/~breadbox/software/elfkickers.html";
|
||||
description = "A collection of programs that access and manipulate ELF files";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.dtzWill ];
|
||||
};
|
||||
}
|
@ -6690,6 +6690,8 @@ with pkgs;
|
||||
|
||||
elfutils = callPackage ../development/tools/misc/elfutils { };
|
||||
|
||||
elfkickers = callPackage ../development/tools/misc/elfkickers { };
|
||||
|
||||
emma = callPackage ../development/tools/analysis/emma { };
|
||||
|
||||
epm = callPackage ../development/tools/misc/epm { };
|
||||
|
Loading…
Reference in New Issue
Block a user