nixpkgs/pkgs/by-name/rw/rwpspread/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
816 B
Nix
Raw Normal View History

2024-01-27 00:20:08 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, libxkbcommon
, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "rwpspread";
2024-05-09 21:28:56 +01:00
version = "0.3.0";
2024-01-27 00:20:08 +00:00
src = fetchFromGitHub {
owner = "0xk1f0";
repo = "rwpspread";
rev = "v${version}";
2024-05-09 21:28:56 +01:00
hash = "sha256-B8K8/M5cUSchG54ar0ZY2XOH6lYLimdZr+dk5ffdplY=";
2024-01-27 00:20:08 +00:00
};
2024-05-09 21:28:56 +01:00
cargoHash = "sha256-bTCXgaE8+nxuEFeOMSihL3lfmbIxiv1f400rmyV2b8k=";
2024-01-27 00:20:08 +00:00
2024-03-12 06:20:03 +00:00
nativeBuildInputs = [ pkg-config ];
2024-01-27 00:20:08 +00:00
2024-03-12 06:20:03 +00:00
buildInputs = [ libxkbcommon ];
2024-01-27 00:20:08 +00:00
passthru.updateScript = nix-update-script { };
meta = {
description = "Multi-Monitor Wallpaper Utility";
homepage = "https://github.com/0xk1f0/rwpspread";
license = lib.licenses.gpl3Only;
2024-06-15 03:21:38 +01:00
maintainers = with lib.maintainers; [ fsnkty ];
2024-01-27 00:20:08 +00:00
platforms = lib.platforms.linux;
mainProgram = "rwpspread";
};
}