summary refs log tree commit diff
path: root/pkgs/development/libraries/minixml/default.nix
blob: c2a61ec6fc1cfba0ad167d331698e41b3df6bb76 (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 {
  name = "mxml-${version}";
  version = "2.12";

  src = fetchFromGitHub {
    owner = "michaelrsweet";
    repo = "mxml";
    rev = "v${version}";
    sha256 = "1m8z503vnfpm576gjpp1h7zmx09n50if2i28v24yx80j820ip94s";
  };

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "A small XML library";
    homepage = https://www.msweet.org/mxml/;
    license = licenses.lgpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.goibhniu ];
  };
}