nixpkgs/pkgs/applications/audio/non/default.nix

30 lines
943 B
Nix
Raw Normal View History

2016-03-07 10:01:29 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2
, libsndfile, ladspaH, liblrdf, liblo, libsigcxx
2015-10-10 21:59:15 +01:00
}:
stdenv.mkDerivation rec {
name = "non-${version}";
2016-04-23 11:20:44 +01:00
version = "2016-04-05";
2015-10-10 21:59:15 +01:00
src = fetchFromGitHub {
owner = "original-male";
repo = "non";
2016-04-23 11:20:44 +01:00
rev = "16885e69fe865495dc32d869d1454ab148b0dca6";
sha256 = "1nwzzgcdpbqh5kjvz40yy5nmzvpp8gcr9biyhhwi68s5bsg972ss";
2015-10-10 21:59:15 +01:00
};
2016-03-07 10:01:29 +00:00
buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile
2015-10-10 21:59:15 +01:00
ladspaH liblrdf liblo libsigcxx
2016-03-07 10:01:29 +00:00
];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf build";
installPhase = "python waf install";
2015-10-10 21:59:15 +01:00
meta = {
description = "Lightweight and lightning fast modular Digital Audio Workstation";
homepage = http://non.tuxfamily.org;
license = stdenv.lib.licenses.lgpl21;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.nico202 ];
};
}