My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/minixml/default.nix

23 lines
527 B

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