2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, automake, intltool, libtool, pkg-config, which
|
2017-12-09 02:20:45 +00:00
|
|
|
, 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
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake intltool libtool pkg-config which ];
|
2017-12-09 02:20:45 +00:00
|
|
|
|
|
|
|
buildInputs = [ docbook_xml_dtd_45 docbook_xsl gtkmm2 libgig libsndfile libxslt ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-04-20 20:39:42 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.linuxsampler.org";
|
2012-04-20 20:39:42 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|