From f5211427b478ca32f551d87396a6b8bd20b42c66 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 18 May 2012 09:32:02 +0000 Subject: [PATCH] Adding zgrviewer svn path=/nixpkgs/trunk/; revision=34166 --- .../graphics/zgrviewer/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/applications/graphics/zgrviewer/default.nix diff --git a/pkgs/applications/graphics/zgrviewer/default.nix b/pkgs/applications/graphics/zgrviewer/default.nix new file mode 100644 index 00000000000..5fe30bd7a03 --- /dev/null +++ b/pkgs/applications/graphics/zgrviewer/default.nix @@ -0,0 +1,30 @@ +{stdenv, fetchurl, jre, unzip}: +stdenv.mkDerivation rec { + version = "0.8.2"; + pname = "zgrviewer"; + name="${pname}-${version}"; + src = fetchurl { + url = "mirror://sourceforge/zvtm/${pname}/${version}/${name}.zip"; + sha256 = "a76b9865c1490a6cfc08911592a19c15fe5972bf58e017cb31db580146f069bb"; + }; + buildInputs = [jre unzip]; + buildPhase = ""; + installPhase = '' + mkdir -p "$out"/{bin,lib/java/zvtm/plugins,share/doc/zvtm} + + cp overview.html *.license.* "$out/share/doc/zvtm" + + cp -r target/* "$out/lib/java/zvtm/" + + echo '#!/bin/sh' > "$out/bin/zgrviewer" + echo "java -jar '$out/lib/java/zvtm/zgrviewer-${version}.jar'" >> "$out/bin/zgrviewer" + chmod a+x "$out/bin/zgrviewer" + ''; + meta = { + # Quicker to unpack locally than load Hydra + platforms = []; + maintainers = with stdenv.lib.maintainers; [raskin]; + license = with stdenv.lib.licenses; lgpl21Plus; + description = "GraphViz graph viewer/navigator"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 476fd3ca614..909cf0fd662 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7673,6 +7673,8 @@ let zathura = callPackage ../applications/misc/zathura { }; + zgrviewer = callPackage ../applications/graphics/zgrviewer {}; + zynaddsubfx = callPackage ../applications/audio/zynaddsubfx { }; ### GAMES