nixpkgs/pkgs/applications/accessibility/contrast/default.nix

73 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-09-16 14:42:11 +00:00
, fetchFromGitLab
, cairo
, dbus
, desktop-file-utils
, gettext
, glib
, gtk3
2020-10-03 22:57:54 +00:00
, libhandy_0
2019-09-16 14:42:11 +00:00
, meson
, ninja
, pango
, pkgconfig
, python3
, rustc
, rustPlatform
, wrapGAppsHook
}:
rustPlatform.buildRustPackage rec {
pname = "contrast";
2020-04-19 01:25:48 +00:00
version = "0.0.3";
2019-09-16 14:42:11 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
group = "World";
owner = "design";
repo = "contrast";
rev = version;
2020-04-19 01:25:48 +00:00
sha256 = "0kk3mv7a6y258109xvgicmsi0lw0rcs00gfyivl5hdz7qh47iccy";
2019-09-16 14:42:11 +00:00
};
2020-04-19 01:25:48 +00:00
cargoSha256 = "0vi8nv4hkhsgqgz36xacwkk5cxirg6li44nbmk3x7vx7c64hzybq";
2019-09-16 14:42:11 +00:00
nativeBuildInputs = [
desktop-file-utils
gettext
meson
ninja
pkgconfig
python3
wrapGAppsHook
glib # for glib-compile-resources
2019-09-16 14:42:11 +00:00
];
buildInputs = [
cairo
dbus
glib
gtk3
2020-10-03 22:57:54 +00:00
libhandy_0
2019-09-16 14:42:11 +00:00
pango
];
postPatch = ''
patchShebangs build-aux/meson_post_install.py
'';
# Don't use buildRustPackage phases, only use it for rust deps setup
configurePhase = null;
buildPhase = null;
checkPhase = null;
installPhase = null;
meta = with lib; {
2019-09-16 14:42:11 +00:00
description = "Checks whether the contrast between two colors meet the WCAG requirements";
homepage = "https://gitlab.gnome.org/World/design/contrast";
2019-09-16 14:42:11 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ jtojnar ];
};
}