this repo has no description
at main 37 lines 582 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 makeWrapper, 5 coreutils, 6}: 7let 8 version = "0.1.0"; 9in 10stdenvNoCC.mkDerivation { 11 pname = "ebil"; 12 inherit version; 13 14 src = ./..; 15 16 nativeBuildInputs = [ 17 makeWrapper 18 ]; 19 20 makeFlags = [ "PREFIX=$(out)" ]; 21 22 postInstall = '' 23 wrapProgram $out/bin/ebil --prefix PATH ':' \ 24 "${ 25 lib.makeBinPath [ 26 coreutils 27 ] 28 }" 29 ''; 30 31 meta = { 32 description = "ebil.club cli"; 33 homepage = "https://codeberg.org/comfysage/ebil"; 34 license = lib.licenses.eupl12; 35 mainProgram = "ebil"; 36 }; 37}