mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
45 lines
958 B
Nix
45 lines
958 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, xdg-desktop-portal
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "xdg-desktop-portal-shana";
|
|
version = "0.3.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Decodetalkers";
|
|
repo = "xdg-desktop-portal-shana";
|
|
rev = "v${version}";
|
|
hash = "sha256-bBKoAegT3wk2UD2fqSLaix2MuKtVAcHA6vcB9VAzLJw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
xdg-desktop-portal
|
|
];
|
|
|
|
# Needed for letting meson run. rustPackage will overwrite it otherwise.
|
|
configurePhase = "";
|
|
|
|
mesonBuildType = "release";
|
|
|
|
cargoHash = "sha256-vufD/eYulblUKQVHsyvjl2AlRoRAGp2oeYol9kTt3lQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Filechooser portal backend for any desktop environment";
|
|
homepage = "https://github.com/Decodetalkers/xdg-desktop-portal-shana";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.samuelefacenda ];
|
|
};
|
|
|
|
}
|