aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/chelf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/chelf/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/chelf/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/chelf/default.nix b/nixpkgs/pkgs/tools/misc/chelf/default.nix
new file mode 100644
index 00000000000..f9740f22375
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/chelf/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ pname = "chelf";
+ 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 ];
+ };
+}