gwc: init at 0.22-4 (#88975)
This commit is contained in:
parent
fabd80d93b
commit
d345b010f4
2 changed files with 49 additions and 0 deletions
47
pkgs/applications/audio/gwc/default.nix
Normal file
47
pkgs/applications/audio/gwc/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, autoreconfHook
|
||||
, pkg-config
|
||||
, alsaLib
|
||||
, libpulseaudio
|
||||
, gtk2
|
||||
, hicolor-icon-theme
|
||||
, libsndfile
|
||||
, fftw
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gwc";
|
||||
version = "0.22-04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AlisterH";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0xvfra32dchnnyf9kj5s5xmqhln8jdrc9f0040hjr2dsb58y206p";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
alsaLib
|
||||
libpulseaudio
|
||||
gtk2
|
||||
hicolor-icon-theme
|
||||
libsndfile
|
||||
fftw
|
||||
];
|
||||
|
||||
enableParallelBuilding = false; # Fails to generate machine.h in time.
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GUI application for removing noise (hiss, pops and clicks) from audio files";
|
||||
homepage = "https://github.com/AlisterH/gwc/";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -20574,6 +20574,8 @@ in
|
|||
|
||||
guvcview = libsForQt5.callPackage ../os-specific/linux/guvcview { };
|
||||
|
||||
gwc = callPackage ../applications/audio/gwc { };
|
||||
|
||||
gxmessage = callPackage ../applications/misc/gxmessage { };
|
||||
|
||||
gxmatcheq-lv2 = callPackage ../applications/audio/gxmatcheq-lv2 { };
|
||||
|
|
Loading…
Reference in a new issue