mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f2a20b6e52
Replace "waf" phases with wafHook that manages everything automatically. Should make things more modular. Packages affected here are: - a2jmidid - ams-lv2 - ardour - fomp - guitarix - ingen - jalv - mda-lv2 - non - patchage - hamster-time-tracker - kupfer - xiphos - xfce4-dockbarx-plugin - xfce4-namebar-plugin - dropbox - clasp - aubio - liliv - lv2 - lvtk - ntk - raul - sratom - suil - ganv - ndn-cxx - ns3 - serd - sord - termbox - wxmupen64plus - jackaudio - pflask - blockhash - glmark2 - weighttp
24 lines
679 B
Nix
24 lines
679 B
Nix
{ stdenv, fetchgit, gtk2, libsndfile, pkgconfig, python, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lv2-unstable-${version}";
|
|
version = "2017-07-08";
|
|
|
|
src = fetchgit {
|
|
url = "http://lv2plug.in/git/cgit.cgi/lv2.git";
|
|
rev = "39c7c726cd52b2863fcea356cafe1bcab2ba7f37";
|
|
sha256 = "1gp2rd99dfmpibvpixrqn115mrhybzf3if3h8bssf6siyi13f29r";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
|
buildInputs = [ gtk2 libsndfile python ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://lv2plug.in;
|
|
description = "A plugin standard for audio systems";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|