lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

wdiff: cleanup, add SuperSandro2000 as maintainer

+7 -6
+7 -6
pkgs/tools/text/wdiff/default.nix
··· 1 1 { lib, stdenv, fetchurl, texinfo, which }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "wdiff-1.2.2"; 4 + pname = "wdiff"; 5 + version = "1.2.2"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://gnu/wdiff/${name}.tar.gz"; 8 + url = "mirror://gnu/wdiff/${pname}-${version}.tar.gz"; 8 9 sha256 = "0sxgg0ms5lhi4aqqvz1rj4s77yi9wymfm3l3gbjfd1qchy66kzrl"; 9 10 }; 10 11 ··· 12 13 13 14 checkInputs = [ which ]; 14 15 15 - meta = { 16 + meta = with lib; { 16 17 homepage = "https://www.gnu.org/software/wdiff/"; 17 18 description = "Comparing files on a word by word basis"; 18 - license = lib.licenses.gpl3Plus; 19 - maintainers = [ lib.maintainers.eelco ]; 20 - platforms = lib.platforms.unix; 19 + license = licenses.gpl3Plus; 20 + maintainers = with maintainers; [ eelco SuperSandro2000 ]; 21 + platforms = platforms.unix; 21 22 }; 22 23 }