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.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, SDL, alsaLib, autoreconfHook, gtk2, libjack2, ladspaH
|
|
, ladspaPlugins, libsamplerate, libsndfile, pkg-config, libpulseaudio, lame
|
|
, vorbis-tools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mhwaveedit";
|
|
version = "1.4.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magnush";
|
|
repo = "mhwaveedit";
|
|
rev = "v${version}";
|
|
sha256 = "037pbq23kh8hsih994x2sv483imglwcrqrx6m8visq9c46fi0j1y";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
|
|
|
|
preAutoreconf = "(cd docgen && sh gendocs.sh)";
|
|
|
|
buildInputs = [
|
|
SDL alsaLib gtk2 libjack2 ladspaH libsamplerate libsndfile libpulseaudio
|
|
];
|
|
|
|
configureFlags = [ "--with-default-ladspa-path=${ladspaPlugins}/lib/ladspa" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/mhwaveedit \
|
|
--prefix PATH : ${lame}/bin/ \
|
|
--prefix PATH : ${vorbis-tools}/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Graphical program for editing, playing and recording sound files";
|
|
homepage = "https://github.com/magnush/mhwaveedit";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|