forked from mirrors/nixpkgs
non: init at 2015-10-6
This commit is contained in:
parent
cd1732f58e
commit
74a958fec7
|
@ -194,6 +194,7 @@
|
||||||
muflax = "Stefan Dorn <mail@muflax.com>";
|
muflax = "Stefan Dorn <mail@muflax.com>";
|
||||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||||
|
nico202 = "Nicolò Balzarotti <anothersms@gmail.com>";
|
||||||
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
|
notthemessiah = "Brian Cohen <brian.cohen.88@gmail.com>";
|
||||||
np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
|
np = "Nicolas Pouillard <np.nix@nicolaspouillard.fr>";
|
||||||
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
|
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
|
||||||
|
|
29
pkgs/applications/audio/non/default.nix
Normal file
29
pkgs/applications/audio/non/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, python2, cairo, libjpeg, ntk, libjack2, libsndfile,
|
||||||
|
ladspaH, liblrdf, liblo, libsigcxx
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "non-${version}";
|
||||||
|
version = "2015-10-6";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "original-male";
|
||||||
|
repo = "non";
|
||||||
|
rev = "88fe7e7b97c97b8733506685f043cbc71b196646";
|
||||||
|
sha256 = "15cffp6c14rlssc8g3mrw8zvb88wffb8k8g1vhd299qlcgv7di2h";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig python2 cairo libjpeg ntk libjack2 libsndfile
|
||||||
|
ladspaH liblrdf liblo libsigcxx
|
||||||
|
];
|
||||||
|
configurePhase = ''python waf configure --prefix=$out'';
|
||||||
|
buildPhase = ''python waf build'';
|
||||||
|
installPhase = ''python waf install'';
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7694,6 +7694,8 @@ let
|
||||||
nix = pkgs.nixUnstable;
|
nix = pkgs.nixUnstable;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
non = callPackage ../applications/audio/non { };
|
||||||
|
|
||||||
nspr = callPackage ../development/libraries/nspr { };
|
nspr = callPackage ../development/libraries/nspr { };
|
||||||
|
|
||||||
nss = lowPrio (callPackage ../development/libraries/nss { });
|
nss = lowPrio (callPackage ../development/libraries/nss { });
|
||||||
|
|
Loading…
Reference in a new issue