Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
823 B
Nix
46 lines
823 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
fetchFromGitHub,
|
|
alsa-lib,
|
|
pkg-config,
|
|
qtbase,
|
|
qtscript,
|
|
qmake,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "iannix";
|
|
version = "unstable-2020-12-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iannix";
|
|
repo = "IanniX";
|
|
rev = "287b51d9b90b3e16ae206c0c4292599619f7b159";
|
|
sha256 = "AhoP+Ok78Vk8Aee/RP572hJeM8O7v2ZTvFalOZZqRy8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qmake
|
|
];
|
|
buildInputs = [
|
|
alsa-lib
|
|
qtbase
|
|
qtscript
|
|
];
|
|
|
|
qmakeFlags = [ "PREFIX=/" ];
|
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Graphical open-source sequencer";
|
|
mainProgram = "iannix";
|
|
homepage = "https://www.iannix.org/";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|