lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 27 lines 824 B view raw
1{ lib, stdenv, fetchFromGitHub, pkg-config, python2, cairo, libjpeg, ntk, libjack2 2, libsndfile, ladspaH, liblo, libsigcxx, lrdf, wafHook 3}: 4 5stdenv.mkDerivation { 6 pname = "non"; 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 = [ pkg-config wafHook ]; 16 buildInputs = [ python2 cairo libjpeg ntk libjack2 libsndfile 17 ladspaH liblo libsigcxx lrdf 18 ]; 19 20 meta = { 21 description = "Lightweight and lightning fast modular Digital Audio Workstation"; 22 homepage = "http://non.tuxfamily.org"; 23 license = lib.licenses.lgpl21; 24 platforms = lib.platforms.linux; 25 maintainers = [ lib.maintainers.nico202 ]; 26 }; 27}