mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
30 lines
879 B
Nix
30 lines
879 B
Nix
{ lib, stdenv, fetchurl, autoconf, automake, intltool, libtool, pkg-config, which
|
|
, docbook_xml_dtd_45, docbook_xsl, gtkmm2, libgig, libsndfile, libxslt
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gigedit";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.linuxsampler.org/packages/${pname}-${version}.tar.bz2";
|
|
sha256 = "08db12crwf0dy1dbyrmivqqpg5zicjikqkmf2kb1ywpq0a9hcxrb";
|
|
};
|
|
|
|
preConfigure = "make -f Makefile.svn";
|
|
|
|
nativeBuildInputs = [ autoconf automake intltool libtool pkg-config which ];
|
|
|
|
buildInputs = [ docbook_xml_dtd_45 docbook_xsl gtkmm2 libgig libsndfile libxslt ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.linuxsampler.org";
|
|
description = "Gigasampler file access library";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|