3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/gigedit/default.nix

47 lines
998 B
Nix
Raw Normal View History

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