Merge pull request #295890 from bobby285271/upd/budgie-plugins

budgiePlugins.budgie-media-player-applet: 1.0.0-unstable-2023-12-31 -> 1.0.1
This commit is contained in:
Bobby Rong 2024-03-15 07:47:28 +08:00 committed by GitHub
commit 33046a122b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,15 +7,15 @@
, python3Packages , python3Packages
}: }:
stdenv.mkDerivation { stdenv.mkDerivation (finalAttrs: {
pname = "budgie-media-player-applet"; pname = "budgie-media-player-applet";
version = "1.0.0-unstable-2023-12-31"; version = "1.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zalesyc"; owner = "zalesyc";
repo = "budgie-media-player-applet"; repo = "budgie-media-player-applet";
rev = "24500be1e0a1f92968df80f8befdf896723ba8ee"; rev = "v${finalAttrs.version}";
hash = "sha256-jQgkE6vv8PIcB0MJgfsQvzMRkkMU51Gqefoa2G6YJCw="; hash = "sha256-E4aD7/SJNvWe6B3iX8fUZeZj14+uxjn0s+30BhU0dxE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -31,8 +31,8 @@ stdenv.mkDerivation {
]; ];
postPatch = '' postPatch = ''
substituteInPlace meson.build --replace "/usr" "$out" substituteInPlace meson.build --replace-fail "/usr" "$out"
substituteInPlace meson_post_install.py --replace '"/", "usr"' "\"$out\"" substituteInPlace meson_post_install.py --replace-fail '"/", "usr"' "\"$out\""
''; '';
postFixup = '' postFixup = ''
@ -47,4 +47,4 @@ stdenv.mkDerivation {
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
maintainers = lib.teams.budgie.members; maintainers = lib.teams.budgie.members;
}; };
} })