nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 stdenv,
3 lib,
4 fetchFromGitHub,
5 xorg,
6 cairo,
7 lv2,
8 libsndfile,
9 pkg-config,
10}:
11
12stdenv.mkDerivation rec {
13 pname = "boops";
14 version = "1.8.2";
15
16 src = fetchFromGitHub {
17 owner = "sjaehn";
18 repo = "BOops";
19 rev = version;
20 sha256 = "0nvpawk58g189z96xnjs4pyri5az3ckdi9mhi0i9s0a7k4gdkarr";
21 };
22
23 nativeBuildInputs = [ pkg-config ];
24 buildInputs = [
25 xorg.libX11
26 cairo
27 lv2
28 libsndfile
29 ];
30
31 installFlags = [ "PREFIX=$(out)" ];
32
33 meta = with lib; {
34 homepage = "https://github.com/sjaehn/BOops";
35 description = "Sound glitch effect sequencer LV2 plugin";
36 maintainers = [ maintainers.magnetophon ];
37 platforms = platforms.linux;
38 license = licenses.gpl3Plus;
39 };
40}