nixpkgs/pkgs/development/tools/drip/default.nix
2017-11-27 16:38:43 -05:00

36 lines
830 B
Nix

{ stdenv, fetchFromGitHub, gcc, jdk, which }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "drip";
version = "0.2.4";
src = fetchFromGitHub {
repo = pname;
owner = "ninjudd";
rev = version;
sha256 = "1zl62wdwfak6z725asq5lcqb506la1aavj7ag78lvp155wyh8aq1";
};
buildInputs = [ gcc jdk which ];
patchPhase = ''
mkdir $out
cp ./* $out -r
'';
buildPhase = ''
$out/bin/drip version
'';
phases = [ "unpackPhase" "patchPhase" "buildPhase" ];
meta = with stdenv.lib; {
description = "a launcher for the Java Virtual Machine intended to be a drop-in replacement for the java command, only faster";
license = licenses.epl10;
homepage = https://github.com/ninjudd/drip;
platforms = platforms.linux;
maintainers = [ maintainers.rybern ];
};
}