2021-03-14 16:00:32 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2019-09-16 15:42:11 +01:00
|
|
|
, fetchFromGitLab
|
|
|
|
, cairo
|
|
|
|
, dbus
|
|
|
|
, desktop-file-utils
|
|
|
|
, gettext
|
|
|
|
, glib
|
|
|
|
, gtk3
|
2020-10-03 23:57:54 +01:00
|
|
|
, libhandy_0
|
2021-03-14 16:00:32 +00:00
|
|
|
, libsass
|
2019-09-16 15:42:11 +01:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pango
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-09-16 15:42:11 +01:00
|
|
|
, python3
|
|
|
|
, rustPlatform
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
2021-03-14 16:00:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-16 15:42:11 +01:00
|
|
|
pname = "contrast";
|
2020-04-19 02:25:48 +01:00
|
|
|
version = "0.0.3";
|
2019-09-16 15:42:11 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
group = "World";
|
|
|
|
owner = "design";
|
|
|
|
repo = "contrast";
|
|
|
|
rev = version;
|
2020-04-19 02:25:48 +01:00
|
|
|
sha256 = "0kk3mv7a6y258109xvgicmsi0lw0rcs00gfyivl5hdz7qh47iccy";
|
2019-09-16 15:42:11 +01:00
|
|
|
};
|
|
|
|
|
2021-03-14 16:00:32 +00:00
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
hash = "sha256-ePkPiWGn79PHrMsSEql5OXZW5uRMdTP+w0/DCcm2KG4=";
|
|
|
|
};
|
2019-09-16 15:42:11 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
desktop-file-utils
|
|
|
|
gettext
|
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-09-16 15:42:11 +01:00
|
|
|
python3
|
2021-03-14 16:00:32 +00:00
|
|
|
rustPlatform.rust.cargo
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
rustPlatform.rust.rustc
|
2019-09-16 15:42:11 +01:00
|
|
|
wrapGAppsHook
|
2020-04-04 07:44:12 +01:00
|
|
|
glib # for glib-compile-resources
|
2019-09-16 15:42:11 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
cairo
|
|
|
|
dbus
|
|
|
|
glib
|
|
|
|
gtk3
|
2020-10-03 23:57:54 +01:00
|
|
|
libhandy_0
|
2021-03-14 16:00:32 +00:00
|
|
|
libsass
|
2019-09-16 15:42:11 +01:00
|
|
|
pango
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs build-aux/meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-16 15:42:11 +01:00
|
|
|
description = "Checks whether the contrast between two colors meet the WCAG requirements";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.gnome.org/World/design/contrast";
|
2019-09-16 15:42:11 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|