mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
xtuner: init at 1.0
This commit is contained in:
parent
a1c5bd00ab
commit
e37ee61a68
39
pkgs/applications/audio/xtuner/default.nix
Normal file
39
pkgs/applications/audio/xtuner/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, cairo
|
||||
, libX11
|
||||
, libjack2
|
||||
, liblo
|
||||
, libsigcxx
|
||||
, zita-resampler
|
||||
, fftwFloat
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xtuner";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "brummer10";
|
||||
repo = "XTuner";
|
||||
rev = "v${version}";
|
||||
sha256 = "1i5chfnf3hcivwzni9z6cn9pb68qmwsx8bf4z7d29a5vig8kbhrv";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ cairo libX11 libjack2 liblo libsigcxx zita-resampler fftwFloat ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/brummer10/XTuner";
|
||||
description = "Tuner for Jack Audio Connection Kit";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -24581,6 +24581,8 @@ in
|
||||
|
||||
xtruss = callPackage ../tools/X11/xtruss { };
|
||||
|
||||
xtuner = callPackage ../applications/audio/xtuner { };
|
||||
|
||||
xmacro = callPackage ../tools/X11/xmacro { };
|
||||
|
||||
xmenu = callPackage ../applications/misc/xmenu { };
|
||||
|
Loading…
Reference in New Issue
Block a user