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
896 B
Nix
46 lines
896 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
wrapGAppsHook3,
|
|
pkg-config,
|
|
alsa-lib,
|
|
atk,
|
|
gtk3,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "qwertone";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.com";
|
|
owner = "azymohliad";
|
|
repo = "qwertone";
|
|
tag = "v${version}";
|
|
hash = "sha256-GD7iFDAaS6D7DGPvK+Cof4rVbUwPX9aCI1jfc0XTxn8=";
|
|
};
|
|
|
|
cargoHash = "sha256-5hrjmX+eUPrj48Ii1YHPZFPMvynowSwSArcNnUOw4hc=";
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
atk
|
|
gtk3
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple music synthesizer app based on usual qwerty-keyboard for input";
|
|
mainProgram = "qwertone";
|
|
homepage = "https://gitlab.com/azymohliad/qwertone";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ linsui ];
|
|
};
|
|
}
|