summary refs log tree commit diff
path: root/pkgs/applications/audio/mhwaveedit/default.nix
blob: d640ddaeb942282c84e8f263d601f89a7bfb681b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, makeWrapper, SDL , alsaLib, gtk, libjack2, ladspaH
, ladspaPlugins, libsamplerate, libsndfile, pkgconfig, libpulseaudio, lame
, vorbisTools }:

stdenv.mkDerivation  rec {
  name = "mhwaveedit-${version}";
  version = "1.4.23";

  src = fetchurl {
    url = "http://download.gna.org/mhwaveedit/${name}.tar.bz2";
    sha256 = "010rk4mr631s440q9cfgdxx2avgzysr9aq52diwdlbq9cddifli3";
  };

  buildInputs = [ SDL alsaLib gtk libjack2 ladspaH libsamplerate libsndfile
     pkgconfig libpulseaudio makeWrapper ];

  configureFlags = "--with-default-ladspa-path=${ladspaPlugins}/lib/ladspa";

  postInstall = ''
    wrapProgram $out/bin/mhwaveedit \
      --prefix PATH : ${lame}/bin/ \
      --prefix PATH : ${vorbisTools}/bin/
  '';

  meta = with stdenv.lib; {
    description = "Graphical program for editing, playing and recording sound files";
    homepage = https://gna.org/projects/mhwaveedit;
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.goibhniu ];
  };
}