biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / non / default.nix
blobf6f2ba3f73c9f3490b7b825878da994fe3f4dbae
1 { lib, stdenv, fetchFromGitHub, pkg-config, python3, cairo, libjpeg, ntk, libjack2
2 , libsndfile, ladspaH, liblo, libsigcxx, lrdf, wafHook
3 }:
5 stdenv.mkDerivation {
6   pname = "non";
7   version = "unstable-2021-01-28";
8   src = fetchFromGitHub {
9     owner = "linuxaudio";
10     repo = "non";
11     rev = "cdad26211b301d2fad55a26812169ab905b85bbb";
12     sha256 = "sha256-iMJNMDytNXpEkUhL0RILSd25ixkm8HL/edtOZta0Pf4=";
13   };
15   nativeBuildInputs = [ pkg-config wafHook ];
16   buildInputs = [ python3 cairo libjpeg ntk libjack2 libsndfile
17                   ladspaH liblo libsigcxx lrdf
18   ];
20   env.CXXFLAGS = "-std=c++14";
22   meta = {
23     description = "Lightweight and lightning fast modular Digital Audio Workstation";
24     homepage = "http://non.tuxfamily.org";
25     license = lib.licenses.lgpl21;
26     platforms = lib.platforms.linux;
27     maintainers = [ lib.maintainers.nico202 ];
28   };