f8a18cd4cf
Importantly, this included regenerating pkgs/servers/x11/xorg, to clobber the old sed.
31 lines
806 B
Nix
31 lines
806 B
Nix
{ stdenv, fetchFromGitHub, alsaLib, pkgconfig, qtbase, qtscript, qmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iannix-${version}";
|
|
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 ];
|
|
};
|
|
}
|