aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/gwc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/gwc/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/gwc/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/gwc/default.nix b/nixpkgs/pkgs/applications/audio/gwc/default.nix
new file mode 100644
index 00000000000..d9631ac45e6
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/gwc/default.nix
@@ -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;
+ };
+}