lol
at v192 18 lines 492 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libestr-0.1.10"; 5 6 src = fetchurl { 7 url = "http://libestr.adiscon.com/files/download/${name}.tar.gz"; 8 sha256 = "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = http://libestr.adiscon.com/; 13 description = "some essentials for string handling"; 14 license = licenses.lgpl21; 15 platforms = platforms.all; 16 maintainers = with maintainers; [ wkennington ]; 17 }; 18}