lol
at v206 30 lines 827 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "uucp-1.07"; 5 6 src = fetchurl { 7 url = "mirror://gnu/uucp/${name}.tar.gz"; 8 sha256 = "0b5nhl9vvif1w3wdipjsk8ckw49jj1w85xw1mmqi3zbcpazia306"; 9 }; 10 11 doCheck = true; 12 13 meta = { 14 description = "Unix-unix cp over serial line, also includes cu program"; 15 16 longDescription = 17 '' Taylor UUCP is a free implementation of UUCP and is the standard 18 UUCP used on the GNU system. If you don't know what UUCP is chances 19 are, nowadays, that you won't need it. If you do need it, you've 20 just found one of the finest UUCP implementations available. 21 ''; 22 23 homepage = http://www.gnu.org/software/uucp/uucp.html; 24 25 license = stdenv.lib.licenses.gpl2Plus; 26 27 platforms = stdenv.lib.platforms.all; 28 maintainers = [ ]; 29 }; 30}