Adding ZynAddSubFX, a software synthesizer, and minixml (a dependency of ZynAddSubFX)
svn path=/nixpkgs/trunk/; revision=26746
This commit is contained in:
19
pkgs/development/libraries/minixml/default.nix
Normal file
19
pkgs/development/libraries/minixml/default.nix
Normal file
@@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user