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
870 B
Nix
30 lines
870 B
Nix
{ stdenv, fetchurl, ladspaH, libjack2, liblo, alsaLib, qt4, libX11, libsndfile, libSM
|
|
, libsamplerate, libtool, autoconf, automake, xorgproto, libICE, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dssi";
|
|
version = "1.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/dssi/dssi/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0kl1hzhb7cykzkrqcqgq1dk4xcgrcxv0jja251aq4z4l783jpj7j";
|
|
};
|
|
|
|
buildInputs =
|
|
[ ladspaH libjack2 liblo alsaLib qt4 libX11 libsndfile libSM
|
|
libsamplerate libtool autoconf automake xorgproto libICE pkg-config
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A plugin SDK for virtual instruments";
|
|
maintainers = with maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl21;
|
|
downloadPage = "https://sourceforge.net/projects/dssi/files/dssi/";
|
|
};
|
|
}
|