summary refs log tree commit diff
path: root/pkgs/applications/graphics/jbrout
diff options
context:
space:
mode:
authorDavid Guibert <david.guibert@gmail.com>2011-08-22 20:26:11 +0000
committerDavid Guibert <david.guibert@gmail.com>2011-08-22 20:26:11 +0000
commitc716ac66e0bbab4ab10f5b396d66f6347f7e60fb (patch)
treefe4f253827d2e666dd4f3e6d95e929d6d2a57b43 /pkgs/applications/graphics/jbrout
parent600e2c0927f46dfeb00691a768635873a47c9504 (diff)
downloadnixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar.gz
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar.bz2
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar.lz
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar.xz
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.tar.zst
nixpkgs-c716ac66e0bbab4ab10f5b396d66f6347f7e60fb.zip
add jbrout, a photo manager using IPTC keywords/EXIF
svn path=/nixpkgs/trunk/; revision=28759
Diffstat (limited to 'pkgs/applications/graphics/jbrout')
-rw-r--r--pkgs/applications/graphics/jbrout/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/jbrout/default.nix b/pkgs/applications/graphics/jbrout/default.nix
new file mode 100644
index 00000000000..7c3826369ee
--- /dev/null
+++ b/pkgs/applications/graphics/jbrout/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchsvn, buildPythonPackage, python, pyGtkGlade, makeWrapper, pyexiv2, lxml, pil, fbida, which }:
+
+buildPythonPackage {
+  name = "jbrout-338";
+  version = "338";
+  src = fetchsvn {
+    url = "http://jbrout.googlecode.com/svn/trunk";
+    rev = "338";
+    sha256 = "0257ni4vkxgd0qhs73fw5ppw1qpf11j8fgwsqc03b1k1yv3hk4hf";
+  };
+
+  doCheck = false;
+# XXX: preConfigure to avoid this
+#  File "/nix/store/vnyjxn6h3rbrn49m25yyw7i1chlxglhw-python-2.7.1/lib/python2.7/zipfile.py", line 348, in FileHeader
+#    len(filename), len(extra))
+#struct.error: ushort format requires 0 <= number <= USHRT_MAX
+
+  preConfigure = ''
+    find | xargs touch
+  '';
+
+  postInstall = ''
+    ensureDir $out/bin
+    echo '#!/bin/sh' > $out/bin/jbrout
+    echo "python $out/lib/python2.7/site-packages/jbrout-src-py2.7.egg/jbrout/jbrout.py" >> $out/bin/jbrout
+    chmod +x $out/bin/jbrout
+
+    wrapProgram $out/bin/jbrout \
+            --set PYTHONPATH "$out/lib/python:$(toPythonPath ${pyGtkGlade})/gtk-2.0:$(toPythonPath ${pyexiv2}):$(toPythonPath ${lxml}):$(toPythonPath ${pil}):$PYTHONPATH" \
+            --set PATH "${fbida}/bin:${which}/bin:$PATH"
+  '';
+
+  buildInputs = [ python pyGtkGlade makeWrapper pyexiv2 lxml pil fbida which ];
+  meta = {
+    homepage = "http://code.google.com/p/jbrout";
+    description = "jBrout is a photo manager";
+  };
+}