09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
33 lines
906 B
Nix
33 lines
906 B
Nix
# The releases of this project are apparently precompiled to .jar files.
|
|
|
|
{ stdenv, fetchurl, jre }:
|
|
|
|
let
|
|
|
|
version = "0.9";
|
|
sha256 = "45dd668a9ceb9cd59529a9fefe422a002ee1554a61be07e6fc8b3baf33d733d9";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "briss-${version}";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/briss/briss-${version}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin";
|
|
mkdir -p "$out/share";
|
|
install -D -m444 -t "$out/share" *.jar
|
|
echo "#!/bin/sh" > "$out/bin/briss"
|
|
echo "${jre}/bin/java -Xms128m -Xmx1024m -cp \"$out/share/\" -jar \"$out/share/briss-${version}.jar\"" >> "$out/bin/briss"
|
|
chmod +x "$out/bin/briss"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://sourceforge.net/projects/briss/;
|
|
description = "Java application for cropping PDF files";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|