lol
1{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2
2, libsndfile, ladspaH, liblrdf, liblo, libsigcxx
3}:
4
5stdenv.mkDerivation rec {
6 name = "non-${version}";
7 version = "2018-02-15";
8 src = fetchFromGitHub {
9 owner = "original-male";
10 repo = "non";
11 rev = "5ae43bb27c42387052a73e5ffc5d33efb9d946a9";
12 sha256 = "1cljkkyi9dxqpqhx8y6l2ja4zjmlya26m26kqxml8gx08vyvddhx";
13 };
14
15 nativeBuildInputs = [ pkgconfig ];
16 buildInputs = [ python2 cairo libjpeg ntk libjack2 libsndfile
17 ladspaH liblrdf liblo libsigcxx
18 ];
19 configurePhase = "python waf configure --prefix=$out";
20 buildPhase = "python waf build";
21 installPhase = "python waf install";
22
23 meta = {
24 description = "Lightweight and lightning fast modular Digital Audio Workstation";
25 homepage = http://non.tuxfamily.org;
26 license = stdenv.lib.licenses.lgpl21;
27 platforms = stdenv.lib.platforms.linux;
28 maintainers = [ stdenv.lib.maintainers.nico202 ];
29 };
30}