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
738 B
Nix
28 lines
738 B
Nix
{ lib, stdenv, fetchurl, SDL, libjack2, libGLU, libGL, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jack_oscrolloscope";
|
|
version = "0.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
|
sha256 = "1pl55in0sj7h5r06n1v91im7d18pplvhbjhjm1fdl39zwnyxiash";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ SDL libjack2 libGLU libGL ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv jack_oscrolloscope $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A simple waveform viewer for JACK";
|
|
homepage = "http://das.nasophon.de/jack_oscrolloscope";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|