evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / gn / gnaural / package.nix
blob75f163ba1e79bae5865479941f4e3b119cf35e8b
1 { lib, stdenv, fetchurl, pkg-config, libsndfile, portaudio, gtk2 }:
3 stdenv.mkDerivation rec {
4   pname = "gnaural";
5   version = "20110606";
7   src = fetchurl {
8     url = "mirror://sourceforge/${pname}/${pname}_${version}.tar.xz";
9     hash = "sha256-0a09DUMfHEIGYuIYSBGJalBiIHIgejr/KVDXCFgKBb8=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ gtk2 libsndfile portaudio ];
15   # Workaround build failure on -fno-common toolchains:
16   #   ld: src/net/../gnauralnet.h:233: multiple definition of `GN_ScheduleFingerprint';
17   #     src/net/../../src/gnauralnet.h:233: first defined here
18   env.NIX_CFLAGS_COMPILE = "-fcommon";
20   postInstall = ''
21     mkdir -p $out/share/applications
22     substitute \
23       $out/share/gnome/apps/Multimedia/gnaural.desktop \
24       $out/share/applications/gnaural.desktop \
25       --replace \
26         "/usr/share/gnaural/pixmaps/gnaural-icon.png" \
27         "$out/share/gnaural/pixmaps/gnaural-icon.png" \
29     rm -rf $out/share/gnome
30   '';
32   meta = with lib; {
33     description = "Programmable auditory binaural-beat synthesizer";
34     homepage = "https://gnaural.sourceforge.net/";
35     maintainers = with maintainers; [ ehmry ];
36     license = with licenses; [ gpl2Only ];
37     mainProgram = "gnaural";
38   };