summary refs log tree commit diff
path: root/pkgs/tools/text/wdiff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 05:21:25 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-12 20:35:44 +0100
commita8941078399668bb9ddc3f45cee8b8b933d3a93c (patch)
tree5f97779481b18b1ad748e7a8e96c76336e9d12bf /pkgs/tools/text/wdiff
parenta50abe418fb7293119172cfa76354e5221256dd6 (diff)
downloadnixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar.gz
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar.bz2
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar.lz
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar.xz
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.tar.zst
nixpkgs-a8941078399668bb9ddc3f45cee8b8b933d3a93c.zip
wdiff: cleanup, add SuperSandro2000 as maintainer
Diffstat (limited to 'pkgs/tools/text/wdiff')
-rw-r--r--pkgs/tools/text/wdiff/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/text/wdiff/default.nix b/pkgs/tools/text/wdiff/default.nix
index afcb649d921..4d0f87354ad 100644
--- a/pkgs/tools/text/wdiff/default.nix
+++ b/pkgs/tools/text/wdiff/default.nix
@@ -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;
   };
 }