stone-phaser: init at 0.1.2
This commit is contained in:
parent
01f6d4d36f
commit
19562e33bd
34
pkgs/applications/audio/stone-phaser/default.nix
Normal file
34
pkgs/applications/audio/stone-phaser/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, libjack2, mesa, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stone-phaser";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpcima";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "180b32z8h9zi8p0q55r1dzxfckamnngm52zjypjjvvy7qdj3mfcd";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
xorg.libX11 cairo lv2 libjack2 mesa
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patch -d dpf -p 1 -i "$src/resources/patch/DPF-bypass.patch"
|
||||
patchShebangs ./dpf/utils/generate-ttl.sh
|
||||
'';
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/jpcima/stone-phaser;
|
||||
description = "A classic analog phaser effect, made with DPF and Faust";
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.boost;
|
||||
};
|
||||
}
|
@ -6485,6 +6485,8 @@ in
|
||||
|
||||
staruml = callPackage ../tools/misc/staruml { inherit (gnome2) GConf; libgcrypt = libgcrypt_1_5; };
|
||||
|
||||
stone-phaser = callPackage ../applications/audio/stone-phaser { };
|
||||
|
||||
systrayhelper = callPackage ../tools/misc/systrayhelper {};
|
||||
|
||||
Sylk = callPackage ../applications/networking/Sylk {};
|
||||
|
Loading…
Reference in New Issue
Block a user