From 8a4bdf1ddefd1374bdb425003754619244c49074 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 28 Jan 2016 17:37:24 +0100 Subject: pkgs/axbo: Re-package with open source code So far I've used the proprietary download and patched it up to work on NixOS. This now goes through the hurdles of trying to package it by building it from source, although there are still some precompiled dependencies used: commons-beanutils-1.8.3 commons-digester3-3.2 jcommon-1.0.20 jfreechart-1.0.16 swingx-all-1.6.4 In order to push this into upstream we first need to package these. Another issue which I didn't dig into is that the interface now looks quite ugly. I'm not sure whether it is because of some packaging choices or because we're now at version 3.x and it's supposed to look like this. Nevertheless, the application works and it makes more sense to improve the source package than the patched up binary package. Signed-off-by: aszlig --- pkgs/librxtx-java/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/librxtx-java') diff --git a/pkgs/librxtx-java/default.nix b/pkgs/librxtx-java/default.nix index 861dc43b..14b0a9da 100644 --- a/pkgs/librxtx-java/default.nix +++ b/pkgs/librxtx-java/default.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-liblock" ]; makeFlags = [ - "JHOME=$(out)/lib/java" + "JHOME=$(out)/share/java" "RXTX_PATH=$(out)/lib" ]; preInstall = '' - mkdir -p "$out/lib/java" + mkdir -p "$out/lib" "$out/share/java" ''; } -- cgit 1.4.1