1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/audio/bolliedelayxt.lv2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
644 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, lv2 }:
stdenv.mkDerivation rec {
pname = "bolliedelayxt.lv2";
version = "unstable-2017-11-02";
src = fetchFromGitHub {
owner = "MrBollie";
repo = pname;
rev = "49c488523c8fb71cb2222d41f9f66ee0cb6b6d82";
sha256 = "sha256-7GM3YccN22JQdQ5ng9HFs9R6Ex/d+XP/khTQsgbGcAw=";
};
buildInputs = [ lv2 ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Flexible LV2 delay plugin";
homepage = "https://github.com/MrBollie/bolliedelayxt.lv2";
license = licenses.gpl3Plus;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}