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

stdenv.mkDerivation  rec {
  name = "mxml-${version}";
  version = "2.6";

  src = fetchurl {
    url = "http://ftp.easysw.com/pub/mxml/${version}/${name}.tar.gz";
    sha256 = "15cpqr43cwvy1ms67rfav8l9fjgybkaqfq7nhag8qnhd3bd4glxh";
  };

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