diff options
Diffstat (limited to 'tools/pizzly-app.nix')
| -rw-r--r-- | tools/pizzly-app.nix | 30 | 
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/pizzly-app.nix b/tools/pizzly-app.nix new file mode 100644 index 0000000..703e4aa --- /dev/null +++ b/tools/pizzly-app.nix @@ -0,0 +1,30 @@ +{ lib, stdenv, fetchFromGitHub, cmake, zlib }: + +stdenv.mkDerivation rec { +  pname = "pizzly"; +  version = "0.37.3"; + +  src = fetchFromGitHub { +    repo = pname; +    owner = "pmelsted"; +    rev = "v${version}"; +    sha256 = "sha256-VB3kYjnhg9+QMdCAbYAzf30kO8zXZlEvK913ALZiUwU="; +  }; + +  nativeBuildInputs = [ cmake ]; +  buildInputs = [ zlib ]; + +  installPhase = '' +    runHook preInstall +    install -Dm 755 pizzly $out/bin/pizzly +    runHook postInstall +  ''; + +  meta = with lib; { +    description = "Fusion detection from kallisto"; +    homepage = "https://github.com/pmelsted/pizzly"; +    license = licenses.bsd2; +    platforms = platforms.linux; +    maintainers = with maintainers; [ jbedo ]; +  }; +}  | 
