mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
ed99a16635
It includes a few bug fixes. This also allows to migrate to Qt5.15
32 lines
788 B
Nix
32 lines
788 B
Nix
{ mkDerivation, lib, fetchFromGitHub, alsaLib, pkgconfig, qtbase, qtscript, qmake
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "iannix";
|
|
version = "unstable-2020-12-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iannix";
|
|
repo = "IanniX";
|
|
rev = "287b51d9b90b3e16ae206c0c4292599619f7b159";
|
|
sha256 = "AhoP+Ok78Vk8Aee/RP572hJeM8O7v2ZTvFalOZZqRy8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
buildInputs = [ alsaLib qtbase qtscript ];
|
|
|
|
qmakeFlags = [ "PREFIX=/" ];
|
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Graphical open-source sequencer";
|
|
homepage = "https://www.iannix.org/";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|