mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
27 lines
883 B
Nix
27 lines
883 B
Nix
{ stdenv, fetchFromGitHub , cairomm, cmake, libjack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "artyFX";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openAVproductions";
|
|
repo = "openAV-ArtyFX";
|
|
rev = "release-${version}";
|
|
sha256 = "012hcy1mxl7gs2lipfcqp5x0xv1azb9hjrwf0h59yyxnzx96h7c9";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cairomm cmake libjack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://openavproductions.com/artyfx/;
|
|
description = "A LV2 plugin bundle of artistic realtime effects";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
# Build uses `-msse` and `-mfpmath=sse`
|
|
badPlatforms = [ "aarch64-linux" ];
|
|
};
|
|
}
|