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