nixpkgs/pkgs/applications/audio/gigedit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
998 B
Nix
Raw Normal View History

2021-11-19 19:51:12 +01: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 03:20:45 +01:00
}:
2021-11-19 19:51:12 +01:00
let
gtkmm2_with_pango242 = gtkmm2.override { pangomm = pangomm_2_42; };
in
stdenv.mkDerivation rec {
pname = "gigedit";
2019-09-16 21:04:25 +02:00
version = "1.1.1";
2017-12-09 03:20:45 +01:00
src = fetchurl {
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
2019-09-16 21:04:25 +02:00
sha256 = "08db12crwf0dy1dbyrmivqqpg5zicjikqkmf2kb1ywpq0a9hcxrb";
};
2017-12-09 03:20:45 +01:00
preConfigure = "make -f Makefile.svn";
nativeBuildInputs = [ autoconf automake intltool libtool pkg-config which ];
2017-12-09 03:20:45 +01:00
2021-11-19 19:51:12 +01:00
buildInputs = [ docbook_xml_dtd_45 docbook_xsl gtkmm2_with_pango242 libgig libsndfile libxslt ];
2017-12-09 03:20:45 +01: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;
};
}