nixpkgs/pkgs/development/libraries/minixml/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
527 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2018-11-12 22:29:42 +00:00
stdenv.mkDerivation rec {
pname = "mxml";
2021-12-09 10:48:37 +00:00
version = "3.3";
2018-11-12 22:29:42 +00:00
src = fetchFromGitHub {
owner = "michaelrsweet";
repo = "mxml";
rev = "v${version}";
2021-12-09 10:48:37 +00:00
sha256 = "sha256-YN8g8KDk7xnDVK1io0zSLO7erxEp4VQ9heA7Lu/cUUg=";
};
2018-11-12 22:29:42 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "A small XML library";
homepage = "https://www.msweet.org/mxml/";
license = licenses.asl20;
2021-03-12 05:22:41 +00:00
platforms = platforms.all;
maintainers = [ maintainers.goibhniu ];
};
}