Author: ludo
Date: Tue Sep  7 08:02:36 2010
New Revision: 23661
URL: https://svn.nixos.org/websvn/nix/?rev=23661&sc=1

Log:
uucp: Fetch from mirror://gnu; add `meta'.

Modified:
   nixpkgs/trunk/pkgs/tools/misc/uucp/default.nix

Modified: nixpkgs/trunk/pkgs/tools/misc/uucp/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/tools/misc/uucp/default.nix      Mon Sep  6 15:36:41 
2010        (r23660)
+++ nixpkgs/trunk/pkgs/tools/misc/uucp/default.nix      Tue Sep  7 08:02:36 
2010        (r23661)
@@ -1,14 +1,30 @@
 { stdenv, fetchurl }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "uucp-1.07";
 
   src = fetchurl {
-    url = 
http://ftp.de.debian.org/debian/pool/main/u/uucp/uucp_1.07.orig.tar.gz;
+    url = "mirror://gnu/uucp/${name}.tar.gz";
     sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306";
   };
 
+  doCheck = true;
+
   meta = {
     description = "Unix-unix cp over serial line, also includes cu program";
+
+    longDescription =
+      '' Taylor UUCP is a free implementation of UUCP and is the standard
+         UUCP used on the GNU system.  If you don't know what UUCP is chances
+         are, nowadays, that you won't need it.  If you do need it, you've
+         just found one of the finest UUCP implementations available.
+      '';
+
+    homepage = http://www.gnu.org/software/uucp/uucp.html;
+
+    license = "GPLv2+";
+
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.ludo ];
   };
 }
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to