nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 19.03 25 lines 584 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "chelf-${version}"; 5 version = "0.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "Gottox"; 9 repo = "chelf"; 10 rev = "v${version}"; 11 sha256 = "0xwd84aynyqsi2kcndbff176vmhrak3jmn3lfcwya59653pppjr6"; 12 }; 13 14 installPhase = '' 15 mkdir -p $out/bin 16 mv chelf $out/bin/chelf 17 ''; 18 19 meta = with stdenv.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 }; 25}