lol
at 18.03-beta 24 lines 669 B view raw
1{ stdenv, fetchurl, check }: 2 3stdenv.mkDerivation rec { 4 name = "ding-libs-${version}"; 5 version = "0.6.1"; 6 7 src = fetchurl { 8 url = "https://fedorahosted.org/released/ding-libs/ding-libs-${version}.tar.gz"; 9 sha256 = "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3"; 10 }; 11 12 enableParallelBuilding = true; 13 buildInputs = [ check ]; 14 15 doCheck = true; 16 17 meta = { 18 description = "'D is not GLib' utility libraries"; 19 homepage = https://fedorahosted.org/sssd/; 20 platforms = with stdenv.lib.platforms; linux; 21 maintainers = with stdenv.lib.maintainers; [ e-user ]; 22 license = [ stdenv.lib.licenses.gpl3 stdenv.lib.licenses.lgpl3 ]; 23 }; 24}