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
55 lines
846 B
Nix
55 lines
846 B
Nix
{
|
|
alsa-lib,
|
|
autoreconfHook,
|
|
fetchFromGitHub,
|
|
gtk3,
|
|
json-glib,
|
|
lib,
|
|
libpulseaudio,
|
|
libsamplerate,
|
|
libsndfile,
|
|
libzip,
|
|
pkg-config,
|
|
stdenv,
|
|
zlib,
|
|
}:
|
|
|
|
let
|
|
version = "3.2.3";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit version;
|
|
|
|
pname = "elektroid";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dagargo";
|
|
repo = "elektroid";
|
|
rev = version;
|
|
hash = "sha256-gK6WQA0KenyksLLFHejCXDTpBm2uhJwn6/E4TXUdeJ8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
gtk3
|
|
json-glib
|
|
libpulseaudio
|
|
libsamplerate
|
|
libsndfile
|
|
libzip
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Sample and MIDI device manager";
|
|
homepage = "https://github.com/dagargo/elektroid";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ camelpunch ];
|
|
};
|
|
}
|