nixpkgs/pkgs/tools/text/podiff/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

27 lines
704 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
pname = "podiff";
version = "1.4";
src = fetchurl {
url = "ftp://download.gnu.org.ua/pub/release/podiff/podiff-1.4.tar.gz";
sha256 = "sha256-IxUx87CxdhWh8MqdcSo8GWaG358aZBaIx0oldK94sio=";
};
patchPhase = ''
sed "s#PREFIX=/usr#PREFIX=$out#g" -i Makefile
mkdir -p $out/bin
mkdir -p $out/share/man/man1
'';
meta = with lib; {
description = "Finds differences in translations between two PO files, or revisions";
mainProgram = "podiff";
homepage = "http://puszcza.gnu.org.ua/software/podiff";
license = licenses.gpl3Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.unix;
};
}