8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 sha256 = "sha256-QhWoCEoM04/MlUgCFCeAR7kF6QSg0joz/i9ZbXRQtDs=";
19 nativeBuildInputs = [ makeWrapper ];
24 install -D neil $out/bin/neil
25 wrapProgram $out/bin/neil \
26 --prefix PATH : "${lib.makeBinPath [ babashka ]}"
30 homepage = "https://github.com/babashka/neil";
31 description = "A CLI to add common aliases and features to deps.edn-based projects";
33 license = licenses.mit;
34 platforms = babashka.meta.platforms;
35 maintainers = with maintainers; [ jlesquembre ];