summary refs log tree commit diff
path: root/pkgs/development/libraries/minixml/default.nix
blob: 5bdacbba11d328ff1448cbe1203b6ad15df81a5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "mxml";
  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 ];
  };
}