eyedropper: 2.0.1 -> 2.1.0 (#392592)

This commit is contained in:
Aleksana
2025-05-15 22:58:42 +08:00
committed by GitHub

View File

@@ -18,21 +18,20 @@
nix-update-script,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "eyedropper";
version = "2.0.1";
version = "2.1.0";
src = fetchFromGitHub {
owner = "FineFindus";
repo = "eyedropper";
rev = "v${version}";
hash = "sha256-FyGj0180Wn8iIDTdDqnNEvFYegwdWCsCq+hmyTTUIo4=";
tag = "v${finalAttrs.version}";
hash = "sha256-t/OFA4oDXtnMmyFptG7zsGW5ubaSNrSnaDR1l9nVbLQ=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
hash = "sha256-nYmH7Nu43TDJKvwfSaBKSihD0acLPmIUQpQM6kV4CAk=";
inherit (finalAttrs) pname src version;
hash = "sha256-39BWpyGhX6fYzxwrodiK1A3ASuRiI7tOA+pSKu8Bx5Q=";
};
nativeBuildInputs = [
@@ -61,10 +60,11 @@ stdenv.mkDerivation rec {
meta = {
description = "Pick and format colors";
homepage = "https://github.com/FineFindus/eyedropper";
changelog = "https://github.com/FineFindus/eyedropper/releases/tag/v${finalAttrs.version}";
mainProgram = "eyedropper";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ zendo ];
teams = [ lib.teams.gnome-circle ];
};
}
})