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.
31 lines
582 B
Nix
31 lines
582 B
Nix
{ lib, stdenv, fetchurl, pkg-config
|
|
, gtk2, alsaLib
|
|
, fftw, gsl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "snd-20.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/snd/${name}.tar.gz";
|
|
sha256 = "016slh34gb6qqb38m8k9yg48rbhc5p12084szcwvanhh5v7fc7mk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
gtk2 alsaLib
|
|
fftw gsl
|
|
];
|
|
|
|
meta = {
|
|
description = "Sound editor";
|
|
homepage = "http://ccrma.stanford.edu/software/snd";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.free;
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
|
|
|
|
}
|