nixpkgs/pkgs/development/libraries/minixml/default.nix
R. RyanTM f9de74d28c
minixml: 2.12 -> 3.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mxml/versions
2019-03-28 20:45:04 +01:00

24 lines
540 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "mxml-${version}";
version = "3.0";
src = fetchFromGitHub {
owner = "michaelrsweet";
repo = "mxml";
rev = "v${version}";
sha256 = "0madp2v2md3xq96aham91byns6qy4byd5pbg28q827fdahfhpmq7";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A small XML library";
homepage = https://www.msweet.org/mxml/;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}