about summary refs log tree commit diff
path: root/pkgs/applications/audio/petrifoo/default.nix
blob: 10a82bac6edbc6b7cff28b1e8b6e809db2208353 (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
33
34
35
36
37
38
{ lib, stdenv, fetchurl, fetchpatch, alsa-lib, cmake, gtk2, libjack2, libgnomecanvas
, libpthreadstubs, libsamplerate, libsndfile, libtool, libxml2
, pkg-config, openssl }:

stdenv.mkDerivation  rec {
  pname = "petri-foo";
  version = "0.1.87";

  src = fetchurl {
    url =  "mirror://sourceforge/petri-foo/${pname}-${version}.tar.bz2";
    sha256 = "0b25iicgn8c42487fdw32ycfrll1pm2zjgy5djvgw6mfcaa4gizh";
  };

  patches = [
    # Pull patch pending upstream inclusion for -fno-common toollchain support:
    #  https://github.com/petri-foo/Petri-Foo/pull/43
    (fetchpatch {
      name = "fno-common.patch";
      url = "https://github.com/petri-foo/Petri-Foo/commit/6a3256c9b619b1fed18ad15063f110e8d91aa6fe.patch";
      sha256 = "05yc4g22iwnd054jmvihrl461yr0cxnghslfrbhan6bac6fcvlal";
    })
  ];

  nativeBuildInputs = [ cmake pkg-config ];

  buildInputs = [ alsa-lib gtk2 libjack2 libgnomecanvas libpthreadstubs
                  libsamplerate libsndfile libtool libxml2 openssl ];

  meta = with lib; {
    description = "MIDI controllable audio sampler";
    longDescription = "a fork of Specimen";
    homepage = "https://petri-foo.sourceforge.net";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.goibhniu ];
    mainProgram = "petri-foo";
  };
}