summary refs log tree commit diff
path: root/pkgs/applications/audio/jack-capture/default.nix
blob: 44e6dd1cd8a2e464d3435d517d49ff550d905b62 (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
{ lib, stdenv, fetchurl, libjack2, libsndfile, pkg-config }:

stdenv.mkDerivation rec {
  pname = "jack_capture";
  version = "0.9.73";

  src = fetchurl {
    url = "https://archive.notam02.no/arkiv/src/${pname}-${version}.tar.gz";
    sha256 = "1pji0zdwm3kxjrkbzj7fnxhr8ncrc8pyqnwyrh47fhypgqjv1br1";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libjack2 libsndfile ];

  buildPhase = "PREFIX=$out make jack_capture";

  installPhase = ''
    mkdir -p $out/bin
    cp jack_capture $out/bin/
  '';

  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "A program for recording soundfiles with jack";
    homepage = "http://archive.notam02.no/arkiv/src";
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu ];
    platforms = lib.platforms.linux;
  };
}