Unverified Commit 33046a12 authored by Bobby Rong's avatar Bobby Rong Committed by GitHub
Browse files

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

budgiePlugins.budgie-media-player-applet: 1.0.0-unstable-2023-12-31 -> 1.0.1
parents 30ccdc28 8f1d1479
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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;
  };
}
})