lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 19 lines 479 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "mxml-${version}"; 5 version = "2.9"; 6 7 src = fetchurl { 8 url = "http://www.msweet.org/files/project3/${name}.tar.gz"; 9 sha256 = "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "a small XML library"; 14 homepage = http://www.minixml.org; 15 license = licenses.lgpl2; 16 platforms = platforms.linux; 17 maintainers = [ maintainers.goibhniu ]; 18 }; 19}