60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
27 lines
750 B
Nix
27 lines
750 B
Nix
{ lib, stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkg-config, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgig";
|
|
version = "4.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-ZwQMrK8da12lFz7UAY2i+eW3rzPFhngdUfeV3hW65iI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
|
|
|
buildInputs = [ libsndfile libuuid ];
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.linuxsampler.org";
|
|
description = "Gigasampler file access library";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|