nixpkgs/pkgs/tools/graphics/xcolor/default.nix
K900 cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00

48 lines
1.3 KiB
Nix

{ lib, rustPlatform, fetchFromGitHub, pkg-config, libX11, libXcursor
, libxcb, python3, installShellFiles, makeDesktopItem, copyDesktopItems }:
rustPlatform.buildRustPackage rec {
pname = "xcolor";
version = "0.5.1";
src = fetchFromGitHub {
owner = "Soft";
repo = pname;
rev = version;
sha256 = "sha256-NfmoBZek4hsga6RflE5EKkWarhCFIcTwEXhg2fpkxNE=";
};
cargoSha256 = "sha256-Zh73+FJ63SkusSavCqSCLbHVnU++4ZFSMFUIM7TnOj0=";
nativeBuildInputs = [ pkg-config python3 installShellFiles copyDesktopItems ];
buildInputs = [ libX11 libXcursor libxcb ];
desktopItems = [
(makeDesktopItem {
name = "XColor";
exec = "xcolor -s";
desktopName = "XColor";
comment = "Select colors visible anywhere on the screen to get their RGB representation";
icon = "xcolor";
categories = [ "Graphics" ];
})
];
postInstall = ''
mkdir -p $out/share/applications
installManPage man/xcolor.1
for x in 16 24 32 48 256 512; do
install -D -m644 extra/icons/xcolor-''${x}.png $out/share/icons/hicolor/''${x}x''${x}/apps/xcolor.png
done
'';
meta = with lib; {
description = "Lightweight color picker for X11";
homepage = "https://github.com/Soft/xcolor";
maintainers = with lib.maintainers; [ fortuneteller2k ];
license = licenses.mit;
};
}