about summary refs log tree commit diff
path: root/pkgs/tools/text/podiff
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2013-01-30 14:36:50 +0100
committerCillian de Róiste <cillian.deroiste@gmail.com>2013-01-30 14:37:10 +0100
commit72cc82d49a2fe5cfba75f3ebed6772008889a115 (patch)
tree3e5ce5b1b51b35c9de35ebbc3a52dcc2b16111b4 /pkgs/tools/text/podiff
parent8c0179bdde74422a4e2edcd930d7f7b558dc025f (diff)
Add PODIFF, a tool to diff PO files
Diffstat (limited to 'pkgs/tools/text/podiff')
-rw-r--r--pkgs/tools/text/podiff/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/text/podiff/default.nix b/pkgs/tools/text/podiff/default.nix
new file mode 100644
index 0000000000000..fc9e3785cf3e3
--- /dev/null
+++ b/pkgs/tools/text/podiff/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "podiff-${version}";
+  version = "1.1";
+
+  src = fetchurl {
+    url = "ftp://download.gnu.org.ua/pub/release/podiff/podiff-1.1.tar.gz";
+    sha256 = "1zz6bcmka5zvk2rq775qv122lqh54aijkxlghvx7z0r6kh880x59";
+  };
+
+  patchPhase = ''
+    sed "s#PREFIX=/usr#PREFIX=$out#g" -i Makefile
+    mkdir -p $out/bin
+    mkdir -p $out/share/man/man1
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Finds differences in translations between two PO files, or revisions";
+    homepage = http://puszcza.gnu.org.ua/software/podiff;
+    license = licenses.gpl3Plus;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}