nixpkgs/pkgs/applications/audio/bolliedelayxt.lv2/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
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/'
2024-06-09 23:07:45 +02:00

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;
};
}