2017-12-09 02:20:45 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, which
|
|
|
|
, docbook_xml_dtd_45, docbook_xsl, gtkmm2, libgig, libsndfile, libxslt
|
|
|
|
}:
|
2012-04-20 20:39:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gigedit";
|
2019-09-16 19:04:25 +00:00
|
|
|
version = "1.1.1";
|
2012-04-20 20:39:42 +00:00
|
|
|
|
2017-12-09 02:20:45 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
2019-09-16 19:04:25 +00:00
|
|
|
sha256 = "08db12crwf0dy1dbyrmivqqpg5zicjikqkmf2kb1ywpq0a9hcxrb";
|
2012-04-20 20:39:42 +00:00
|
|
|
};
|
|
|
|
|
2017-12-09 02:20:45 +00:00
|
|
|
preConfigure = "make -f Makefile.svn";
|
2012-04-20 20:39:42 +00:00
|
|
|
|
2017-12-09 02:20:45 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake intltool libtool pkgconfig which ];
|
|
|
|
|
|
|
|
buildInputs = [ docbook_xml_dtd_45 docbook_xsl gtkmm2 libgig libsndfile libxslt ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-04-20 20:39:42 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.linuxsampler.org;
|
|
|
|
description = "Gigasampler file access library";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-04-20 20:39:42 +00:00
|
|
|
};
|
|
|
|
}
|