Use `pname` instead of `name` for plugin derivations

This commit is contained in:
outfoxxed 2023-05-10 19:25:32 -07:00 committed by Mihai Fufezan
parent fb204633fb
commit 0053442040
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
hyprland, hyprland,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "borders-plus-plus"; pname = "borders-plus-plus";
version = "0.1"; version = "0.1";
src = ./.; src = ./.;

View File

@ -4,7 +4,7 @@
hyprland, hyprland,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "csgo-vulkan-fix"; pname = "csgo-vulkan-fix";
version = "0.1"; version = "0.1";
src = ./.; src = ./.;

View File

@ -4,7 +4,7 @@
hyprland, hyprland,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "hyprbars"; pname = "hyprbars";
version = "0.1"; version = "0.1";
src = ./.; src = ./.;
@ -18,4 +18,4 @@ stdenv.mkDerivation {
license = licenses.bsd3; license = licenses.bsd3;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }