1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/minixml/default.nix

20 lines
479 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mxml-${version}";
2014-12-03 21:48:20 +00:00
version = "2.9";
src = fetchurl {
url = "http://www.msweet.org/files/project3/${name}.tar.gz";
2014-12-03 21:48:20 +00:00
sha256 = "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd";
};
meta = with stdenv.lib; {
description = "A small XML library";
homepage = http://www.minixml.org;
license = licenses.lgpl2;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}