mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
644 B
Nix
26 lines
644 B
Nix
{ 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;
|
|
};
|
|
}
|