nixpkgs/pkgs/development/libraries/libgig/default.nix
R. RyanTM 18930b90a3 libgig: 4.1.0 -> 4.2.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libgig/versions
2019-08-04 08:31:27 -07:00

28 lines
747 B
Nix

{ stdenv, fetchurl, autoconf, automake, libsndfile, libtool, pkgconfig, libuuid }:
stdenv.mkDerivation rec {
name = "libgig-${version}";
version = "4.2.0";
src = fetchurl {
url = "https://download.linuxsampler.org/packages/${name}.tar.bz2";
sha256 = "1zs5yy124bymfyapsnljr6rv2lnn5inwchm0xnwiw44b2d39l8hn";
};
nativeBuildInputs = [ autoconf automake libtool pkgconfig ];
buildInputs = [ libsndfile libuuid ];
preConfigure = "make -f Makefile.svn";
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://www.linuxsampler.org;
description = "Gigasampler file access library";
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}