mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
485 B
Nix
20 lines
485 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mxml-${version}";
|
|
version = "2.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.msweet.org/files/project3/${name}.tar.gz";
|
|
sha256 = "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A small XML library";
|
|
homepage = https://www.msweet.org/mxml/;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|