Commit a771af89 authored by Jan Tojnar's avatar Jan Tojnar
Browse files

ashpd-demo: 0.2.2 → 0.3.0

https://github.com/bilelmoussaoui/ashpd/compare/0.2.2...0.3.0-demo

Remove update script since it cannot deal with monorepo tags (we only want tags with -demo suffix).
parent 8bf19679
Loading
Loading
Loading
Loading
+14 −23
Original line number Diff line number Diff line
@@ -21,25 +21,20 @@
, desktop-file-utils
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "ashpd-demo";
  version = "0.2.2";
  version = "0.3.0";

  src =
    let
      share = fetchFromGitHub {
  src = fetchFromGitHub {
    owner = "bilelmoussaoui";
    repo = "ashpd";
        rev = version;
        sha256 = "9O6XqM4oys/hXgztQQ8tTobJV8U52db/VY6FlTMUvGY=";
    rev = "${finalAttrs.version}-demo";
    hash = "sha256-isc0+Mke6XeCCLiuxnjHqrnlGqYuQnmcU1acM14UOno=";
  };
    in
    "${share}/ashpd-demo";

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    name = "${pname}-${version}";
    hash = "sha256-eFq42m16zzrUBbAqv7BsAf4VxyO93WynLjvIzKbZwnQ=";
    src = "${finalAttrs.src}/ashpd-demo";
    hash = "sha256-9L/WFL2fLCRahjGCVdgV+3HfDMrntdIWcuuOJbzdPiI=";
  };

  nativeBuildInputs = [
@@ -66,13 +61,9 @@ stdenv.mkDerivation rec {
    libshumate
  ];

  # FIXME: workaround for Pipewire 0.3.64 deprecated API change, remove when fixed upstream
  # https://gitlab.freedesktop.org/pipewire/pipewire-rs/-/issues/55
  env.NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ];

  passthru = {
    updateScript = nix-update-script { };
  };
  postPatch = ''
    cd ashpd-demo
  '';

  meta = with lib; {
    description = "Tool for playing with XDG desktop portals";
@@ -81,4 +72,4 @@ stdenv.mkDerivation rec {
    maintainers = with maintainers; [ jtojnar ];
    platforms = platforms.linux;
  };
}
})