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.
28 lines
682 B
Nix
28 lines
682 B
Nix
{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "BSEQuencer";
|
|
version = "1.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sjaehn";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0hagnn104ybzdp13r95idw20fhmzif8p3kmiypnr20m6c64rdd29";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
xorg.libX11 cairo lv2
|
|
];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sjaehn/BSEQuencer";
|
|
description = "Multi channel MIDI step sequencer LV2 plugin";
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|