iannix: modernize, move to by-name/
This commit is contained in:
@@ -1,15 +1,13 @@
|
||||
{
|
||||
mkDerivation,
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
alsa-lib,
|
||||
pkg-config,
|
||||
qtbase,
|
||||
qtscript,
|
||||
qmake,
|
||||
libsForQt5,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
stdenv.mkDerivation {
|
||||
pname = "iannix";
|
||||
version = "unstable-2020-12-09";
|
||||
|
||||
@@ -22,24 +20,25 @@ mkDerivation {
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
qmake
|
||||
libsForQt5.qmake
|
||||
libsForQt5.wrapQtAppsHook
|
||||
];
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
qtbase
|
||||
qtscript
|
||||
libsForQt5.qtbase
|
||||
libsForQt5.qtscript
|
||||
];
|
||||
|
||||
qmakeFlags = [ "PREFIX=/" ];
|
||||
|
||||
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Graphical open-source sequencer";
|
||||
mainProgram = "iannix";
|
||||
homepage = "https://www.iannix.org/";
|
||||
license = licenses.lgpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
license = lib.licenses.lgpl3;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ freezeboy ];
|
||||
};
|
||||
}
|
||||
@@ -3078,8 +3078,6 @@ with pkgs;
|
||||
|
||||
hyphenDicts = recurseIntoAttrs (callPackages ../development/libraries/hyphen/dictionaries.nix { });
|
||||
|
||||
iannix = libsForQt5.callPackage ../applications/audio/iannix { };
|
||||
|
||||
iaito = libsForQt5.callPackage ../tools/security/iaito { };
|
||||
|
||||
icemon = libsForQt5.callPackage ../applications/networking/icemon { };
|
||||
|
||||
Reference in New Issue
Block a user