linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / chelf / default.nix
blob25344d8658e82e3b8677fd33ee863e1e81d1b53a
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "chelf";
5   version = "0.2.2";
7   src = fetchFromGitHub {
8     owner = "Gottox";
9     repo = "chelf";
10     rev = "v${version}";
11     sha256 = "0xwd84aynyqsi2kcndbff176vmhrak3jmn3lfcwya59653pppjr6";
12   };
14   installPhase = ''
15     mkdir -p $out/bin
16     mv chelf $out/bin/chelf
17   '';
19   meta = with lib; {
20     description = "change or display the stack size of an ELF binary";
21     homepage = "https://github.com/Gottox/chelf";
22     license = licenses.bsd2;
23     maintainers = with maintainers; [ dtzWill ];
24   };