nixpkgs/pkgs/tools/text/podiff/default.nix

26 lines
680 B
Nix
Raw Normal View History

2013-01-30 13:36:50 +00:00
{ stdenv, fetchurl }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "podiff";
2020-08-27 07:28:12 +00:00
version = "1.2";
2013-01-30 13:36:50 +00:00
src = fetchurl {
2020-08-27 07:28:12 +00:00
url = "ftp://download.gnu.org.ua/pub/release/podiff/podiff-1.2.tar.gz";
sha256 = "1l2b4hh53xlx28riigwarzkhxpv1pcz059xj1ka33ccvxc6c20k9";
2013-01-30 13:36:50 +00:00
};
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";
2013-01-30 13:36:50 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
2013-01-30 13:36:50 +00:00
};
}