eyedropper: 1.0.0 -> 2.0.1 (#352751)

This commit is contained in:
Aleksana 2024-11-27 22:50:36 +08:00 committed by GitHub
commit d071bf3b4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,36 +1,37 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, cargo
, pkg-config
, meson
, ninja
, blueprint-compiler
, glib
, gtk4
, libadwaita
, rustc
, wrapGAppsHook4
, appstream-glib
, desktop-file-utils
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
cargo,
pkg-config,
meson,
ninja,
blueprint-compiler,
glib,
gtk4,
libadwaita,
rustc,
wrapGAppsHook4,
appstream-glib,
desktop-file-utils,
}:
stdenv.mkDerivation rec {
pname = "eyedropper";
version = "1.0.0";
version = "2.0.1";
src = fetchFromGitHub {
owner = "FineFindus";
repo = pname;
rev = "v${version}";
hash = "sha256-PStQC9n+DTTOiNO9fHUjIkwgvKeA2alVbtX5qfqhTYo=";
hash = "sha256-FyGj0180Wn8iIDTdDqnNEvFYegwdWCsCq+hmyTTUIo4=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-WRjoyIoVvOYcw2i/cMycE67iziZ8dvQrZ3EfE2v2jkQ=";
hash = "sha256-jXo7Aq+pXWySe6MyH9GCTQVNwbboER7RwJe6Asqbxxc=";
};
nativeBuildInputs = [
@ -52,12 +53,12 @@ stdenv.mkDerivation rec {
libadwaita
];
meta = with lib; {
meta = {
description = "Pick and format colors";
mainProgram = "eyedropper";
homepage = "https://github.com/FineFindus/eyedropper";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ zendo ];
mainProgram = "eyedropper";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ zendo ];
};
}