mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
f2ecd174d9
Update and add jdk to runtime dependecies
38 lines
807 B
Nix
38 lines
807 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, babashka
|
|
, jdk
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "neil";
|
|
version = "0.1.45";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "babashka";
|
|
repo = "neil";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-QEeJWR4aBx1DsXjlTanhDSQn91I9JzEitU+Az+wTVFY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -D neil $out/bin/neil
|
|
wrapProgram $out/bin/neil \
|
|
--prefix PATH : "${lib.makeBinPath [ babashka jdk ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/babashka/neil";
|
|
description = "A CLI to add common aliases and features to deps.edn-based projects";
|
|
license = licenses.mit;
|
|
platforms = babashka.meta.platforms;
|
|
maintainers = with maintainers; [ jlesquembre ];
|
|
};
|
|
}
|