mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
31 lines
801 B
Nix
31 lines
801 B
Nix
{ mkDerivation, stdenv, fetchFromGitHub, alsaLib, pkgconfig, qtbase, qtscript, qmake
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "iannix";
|
|
version = "2016-01-31";
|
|
src = fetchFromGitHub {
|
|
owner = "iannix";
|
|
repo = "IanniX";
|
|
rev = "f84becdcbe154b20a53aa2622068cb8f6fda0755";
|
|
sha256 = "184ydb9f1303v332k5k3f1ki7cb6nkxhh6ij0yn72v7dp7figrgj";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
buildInputs = [ alsaLib qtbase qtscript ];
|
|
|
|
qmakeFlags = [ "PREFIX=/" ];
|
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "Graphical open-source sequencer,";
|
|
homepage = "https://www.iannix.org/";
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.nico202 ];
|
|
};
|
|
}
|