571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, jre, makeWrapper, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "astrolabe-generator";
|
|
version = "3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/wymarc/astrolabe-generator/releases/download/v${version}/AstrolabeGenerator-${version}.zip";
|
|
sha256 = "141gfmrqa1mf2qas87qig4phym9fg9gbrcfl2idzd5gi91824dn9";
|
|
};
|
|
|
|
buildInputs = [ jre ];
|
|
nativeBuildInputs = [ makeWrapper unzip ];
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/java}
|
|
cp AstrolabeGenerator-${version}.jar $out/share/java
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/AstrolabeGenerator \
|
|
--add-flags "-jar $out/share/java/AstrolabeGenerator-${version}.jar"
|
|
'';
|
|
|
|
meta = with lib;{
|
|
homepage = "https://www.astrolabeproject.com";
|
|
description = "Java-based tool for generating EPS files for constructing astrolabes and related tools";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
mainProgram = "AstrolabeGenerator";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|