mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06: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.
29 lines
855 B
Nix
29 lines
855 B
Nix
{ lib, stdenv, fetchFromGitHub, fltk, alsaLib, freetype, libXrandr, libXinerama, libXcursor, lv2, libjack2, cmake, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ensemble-chorus";
|
|
version = "unstable-15-02-2019";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpcima";
|
|
repo = pname;
|
|
rev = "59baeb86b8851f521bc8162e22e3f15061662cc3";
|
|
sha256 = "0c1y10vyhrihcjvxqpqf6b52yk5yhwh813cfp6nla5ax2w88dbhr";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
fltk alsaLib freetype libXrandr libXinerama libXcursor lv2 libjack2
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jpcima/ensemble-chorus";
|
|
description = "Digital model of electronic string ensemble chorus";
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
};
|
|
}
|