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
77 lines
1.5 KiB
Nix
77 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
freetype,
|
|
fluidsynth,
|
|
SDL,
|
|
SDL_gfx,
|
|
SDL_ttf,
|
|
liblo,
|
|
libxml2,
|
|
alsa-lib,
|
|
libjack2,
|
|
libvorbis,
|
|
libSM,
|
|
libsndfile,
|
|
libogg,
|
|
libX11,
|
|
nettle,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "freewheeling";
|
|
version = "0.6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "free-wheeling";
|
|
repo = "freewheeling";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-xEZBE/7nUvK2hruqP6QQzlsIDmuniPZg7JEJkCEvzvU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
freetype
|
|
fluidsynth
|
|
SDL
|
|
SDL_gfx
|
|
SDL_ttf
|
|
liblo
|
|
libxml2
|
|
libjack2
|
|
alsa-lib
|
|
libvorbis
|
|
libsndfile
|
|
libogg
|
|
libSM
|
|
libX11
|
|
nettle
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${lib.getDev libxml2}/include/libxml2";
|
|
|
|
meta = {
|
|
description = "Live looping instrument with JACK and MIDI support";
|
|
longDescription = ''
|
|
Freewheeling allows us to build repetitive grooves
|
|
by sampling and directing loops from within spirited improvisation.
|
|
|
|
It works because, down to the core, it's built around
|
|
improv. We leave mice and menus, and dive into our own process
|
|
of making sound.
|
|
|
|
Freewheeling runs under macOS and Linux, and is open source
|
|
software, released under the GNU GPL license.
|
|
'';
|
|
|
|
homepage = "https://freewheeling.sourceforge.net";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.sepi ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "fweelin";
|
|
};
|
|
})
|