1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 16:15:30 +00:00
nixpkgs/pkgs/applications/audio/iannix/default.nix

32 lines
748 B
Nix
Raw Normal View History

2020-11-21 02:11:41 +00:00
{ mkDerivation, lib, fetchFromGitHub, alsaLib, pkgconfig, qtbase, qtscript, qmake
2016-02-13 00:03:58 +00:00
}:
2020-11-21 02:11:41 +00:00
mkDerivation rec {
pname = "iannix";
2020-11-21 02:11:41 +00:00
version = "0.9.20-b";
2016-02-13 00:03:58 +00:00
src = fetchFromGitHub {
owner = "iannix";
repo = "IanniX";
2020-11-21 02:11:41 +00:00
rev = "v${version}";
sha256 = "6jjgMvD2VkR3ztU5LguqhtNd+4/ZqRy5pVW5xQ6K20Q=";
2016-02-13 00:03:58 +00:00
};
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ alsaLib qtbase qtscript ];
2016-02-13 00:03:58 +00:00
qmakeFlags = [ "PREFIX=/" ];
2016-02-13 00:03:58 +00:00
installFlags = [ "INSTALL_ROOT=$(out)" ];
enableParallelBuilding = true;
2020-11-21 02:11:41 +00:00
meta = with lib; {
description = "Graphical open-source sequencer";
homepage = "https://www.iannix.org/";
2020-11-21 02:11:41 +00:00
license = licenses.lgpl3;
platforms = platforms.linux;
2020-11-23 13:04:26 +00:00
maintainers = with maintainers; [ freezeboy ];
2016-02-13 00:03:58 +00:00
};
}