2018-11-11 13:20:41 -08:00
|
|
|
{ stdenv, fetchgit, boost, gtk2, pkgconfig, python, wafHook }:
|
2014-03-09 10:00:52 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-20 02:19:16 -08:00
|
|
|
pname = "raul";
|
|
|
|
version = "unstable-2019-12-09";
|
|
|
|
name = "${pname}-${version}";
|
2014-03-09 10:00:52 -07:00
|
|
|
|
2016-10-31 17:17:18 -07:00
|
|
|
src = fetchgit {
|
2020-01-20 02:19:16 -08:00
|
|
|
url = "https://gitlab.com/drobilla/raul.git";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
rev = "e87bb398f025912fb989a09f1450b838b251aea1";
|
|
|
|
sha256 = "1z37jb6ghc13b8nv8a8hcg669gl8vh4ni9djvfgga9vcz8rmcg8l";
|
2014-03-09 10:00:52 -07:00
|
|
|
};
|
|
|
|
|
2018-11-11 13:20:41 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ boost gtk2 python ];
|
2014-03-09 10:00:52 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A C++ utility library primarily aimed at audio/musical applications";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://drobilla.net/software/raul";
|
2014-03-09 10:00:52 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-09 12:33:35 -07:00
|
|
|
platforms = platforms.linux;
|
2014-03-09 10:00:52 -07:00
|
|
|
};
|
|
|
|
}
|