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