4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
904 B
Nix
31 lines
904 B
Nix
{ lib, stdenv, fetchFromGitHub, jre, makeWrapper, ant, jdk }:
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.1";
|
|
name = "jugglinglab";
|
|
src = fetchFromGitHub {
|
|
owner = "jkboyce";
|
|
repo = "jugglinglab";
|
|
rev = "1908012682d8c39a9b92248a20f285455104c510"; # v1.2.1 does not have a tag on Github
|
|
sha256 = "0dvcyjwynvapqbjchrln59vdskrm3w6kh0knxcn4bx61vcz3171z";
|
|
};
|
|
buildInputs = [ jre ];
|
|
nativeBuildInputs = [ ant jdk makeWrapper ];
|
|
buildPhase = "ant";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin"
|
|
mkdir -p "$out/lib"
|
|
cp bin/JugglingLab.jar $out/lib/
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/jugglinglab \
|
|
--add-flags "-jar $out/lib/JugglingLab.jar"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A program to visualize different juggling pattens";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ wnklmnn ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|