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.
25 lines
696 B
Nix
25 lines
696 B
Nix
{ lib, stdenv, fetchurl, alsaLib, gtkmm2, libjack2, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seq24";
|
|
version = "0.9.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/seq24/trunk/${version}/+download/${pname}-${version}.tar.gz";
|
|
sha256 = "1qpyb7355s21sgy6gibkybxpzx4ikha57a8w644lca6qy9mhcwi3";
|
|
};
|
|
|
|
patches = [ ./mutex_no_nameclash.patch ];
|
|
|
|
buildInputs = [ alsaLib gtkmm2 libjack2 ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "Minimal loop based midi sequencer";
|
|
homepage = "http://www.filter24.org/seq24";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
}
|