mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #54885 from dtzWill/feature/chelf
chelf: init at 0.2.2
This commit is contained in:
commit
1056100039
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/chelf/default.nix
Normal file
25
pkgs/tools/misc/chelf/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chelf-${version}";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Gottox";
|
||||
repo = "chelf";
|
||||
rev = "v${version}";
|
||||
sha256 = "0xwd84aynyqsi2kcndbff176vmhrak3jmn3lfcwya59653pppjr6";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv chelf $out/bin/chelf
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "change or display the stack size of an ELF binary";
|
||||
homepage = https://github.com/Gottox/chelf;
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
};
|
||||
}
|
|
@ -1112,6 +1112,8 @@ in
|
|||
|
||||
cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
|
||||
|
||||
chelf = callPackage ../tools/misc/chelf { };
|
||||
|
||||
cht-sh = callPackage ../tools/misc/cht.sh { };
|
||||
|
||||
ckbcomp = callPackage ../tools/X11/ckbcomp { };
|
||||
|
|
Loading…
Reference in a new issue