nixpkgs/pkgs/applications/audio/freewheeling/default.nix

52 lines
1.7 KiB
Nix
Raw Normal View History

2017-09-01 21:21:42 +00:00
{ lib, stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, gnutls, freetype
, SDL, SDL_gfx, SDL_ttf, liblo, libxml2, alsaLib, libjack2, libvorbis
2017-09-01 21:21:42 +00:00
, libSM, libsndfile, libogg, libtool
}:
2017-09-01 21:21:42 +00:00
let
makeSDLFlags = map (p: "-I${lib.getDev p}/include/SDL");
in
2016-09-18 22:41:35 +00:00
stdenv.mkDerivation rec {
pname = "freewheeling";
version = "0.6.5";
2017-01-27 17:37:24 +00:00
src = fetchFromGitHub {
owner = "free-wheeling";
repo = "freewheeling";
2017-09-01 21:21:42 +00:00
rev = "v${version}";
sha256 = "1gjii2kndffj9iqici4vb9zrkrdqj1hs9q43x7jv48wv9872z78r";
};
2017-09-01 21:21:42 +00:00
nativeBuildInputs = [ pkgconfig autoreconfHook libtool ];
buildInputs = [
2017-01-27 17:37:24 +00:00
freetype SDL SDL_gfx SDL_ttf
2016-08-22 04:42:27 +00:00
liblo libxml2 libjack2 alsaLib libvorbis libsndfile libogg libSM
2017-01-27 17:37:24 +00:00
(gnutls.overrideAttrs (oldAttrs: {
configureFlags = oldAttrs.configureFlags ++ [ "--enable-openssl-compatibility" ];
}))
];
2017-09-01 21:21:42 +00:00
NIX_CFLAGS_COMPILE = makeSDLFlags [ SDL SDL_ttf SDL_gfx ] ++ [ "-I${libxml2.dev}/include/libxml2" ];
hardeningDisable = [ "format" ];
meta = {
description = "A 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 = http://freewheeling.sourceforge.net;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.sepi ];
platforms = stdenv.lib.platforms.linux;
};
}