0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

LibreArp{,-lv2}: rename to librearp{,-lv2}

This commit is contained in:
Zitrone 2024-06-12 08:03:53 +02:00 committed by Zitrone
parent 6f35d8d794
commit db06c687e0
No known key found for this signature in database
GPG key ID: 54767E8E66ABED22
4 changed files with 11 additions and 13 deletions

View file

@ -2,14 +2,14 @@
, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor
, alsa-lib, libjack2, lv2, gcc-unwrapped, curl}:
stdenv.mkDerivation rec {
pname = "LibreArp-lv2";
stdenv.mkDerivation (finalAttrs: {
pname = "librearp-lv2";
version = "2.4";
src = fetchFromGitLab {
owner = "LibreArp";
repo = "LibreArp";
rev = "${version}-lv2";
rev = "${finalAttrs.version}-lv2";
hash = "sha256-x+ZPiU/ZFzrXb8szMS9Ts4JEEyXYpM8CLZHT4lNJWY8=";
fetchSubmodules = true;
};
@ -50,4 +50,4 @@ stdenv.mkDerivation rec {
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ magnetophon ];
};
}
})

View file

@ -2,14 +2,14 @@
, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor
, alsa-lib, libjack2, lv2, gcc-unwrapped, curl}:
stdenv.mkDerivation rec {
pname = "LibreArp";
stdenv.mkDerivation (finalAttrs: {
pname = "librearp";
version = "2.4";
src = fetchFromGitLab {
owner = "LibreArp";
repo = "LibreArp";
rev = version;
rev = finalAttrs.version;
hash = "sha256-jEpES68NuHhelUq/L46CxEeadk3LbuPZ72JaGDbw8fg=";
fetchSubmodules = true;
};
@ -44,10 +44,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description =
"A pattern-based arpeggio generator plugin.";
"A pattern-based arpeggio generator plugin";
homepage = "https://librearp.gitlab.io/";
license = licenses.gpl3Plus;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ magnetophon ];
};
}
})

View file

@ -668,6 +668,8 @@ mapAliases ({
librarian-puppet-go = throw "'librarian-puppet-go' has been removed, as it's upstream is unmaintained"; # Added 2024-06-10
libraw_unstable = throw "'libraw_unstable' has been removed, please use libraw"; # Added 2023-01-30
librdf = lrdf; # Added 2020-03-22
LibreArp = librearp; # Added 2024-06-12
LibreArp-lv2 = librearp-lv2; # Added 2024-06-12
libressl_3_5 = throw "'libressl_3_5' has reached end-of-life "; # Added 2023-05-07
librtlsdr = rtl-sdr; # Added 2023-02-18
librewolf-wayland = librewolf; # Added 2022-11-15

View file

@ -31201,10 +31201,6 @@ with pkgs;
lemonade = callPackage ../applications/misc/lemonade { };
LibreArp = callPackage ../applications/audio/LibreArp { };
LibreArp-lv2 = callPackage ../applications/audio/LibreArp/lv2.nix { };
librespot = callPackage ../applications/audio/librespot {
withALSA = stdenv.isLinux;
withPulseAudio = config.pulseaudio or stdenv.isLinux;