mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
27 lines
706 B
Nix
27 lines
706 B
Nix
|
{ stdenv, fetchurl, boost, gtk, pkgconfig, python }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "raul-${version}";
|
||
|
version = "0.8.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://download.drobilla.net/${name}.tar.bz2";
|
||
|
sha256 = "09ms40xc1x6qli6lxkwn5ibqh62nl9w7dq0b6jh1q2zvnrxwsd8b";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ boost gtk pkgconfig python ];
|
||
|
|
||
|
configurePhase = "python waf configure --prefix=$out";
|
||
|
|
||
|
buildPhase = "python waf";
|
||
|
|
||
|
installPhase = "python waf install";
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "A C++ utility library primarily aimed at audio/musical applications";
|
||
|
homepage = http://drobilla.net/software/raul;
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = [ maintainers.goibhniu ];
|
||
|
};
|
||
|
}
|