wdiff: cleanup, add SuperSandro2000 as maintainer

This commit is contained in:
Sandro Jäckel 2021-02-12 05:21:25 +01:00
parent a50abe418f
commit a894107839
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,10 +1,11 @@
{ lib, stdenv, fetchurl, texinfo, which }:
stdenv.mkDerivation rec {
name = "wdiff-1.2.2";
pname = "wdiff";
version = "1.2.2";
src = fetchurl {
url = "mirror://gnu/wdiff/${name}.tar.gz";
url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz";
sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl";
};
@ -12,11 +13,11 @@ stdenv.mkDerivation rec {
checkInputs = [ which ];
meta = {
meta = with lib; {
homepage = "https://www.gnu.org/software/wdiff/";
description = "Comparing files on a word by word basis";
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.unix;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ eelco SuperSandro2000 ];
platforms = platforms.unix;
};
}