Skip to content

Commit 9e063f9

Browse files
authored
eyedropper: 2.0.1 -> 2.1.0 (#392592)
2 parents e4fd7d9 + 45aa4ef commit 9e063f9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pkgs/by-name/ey/eyedropper/package.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,20 @@
1818
nix-update-script,
1919
}:
2020

21-
stdenv.mkDerivation rec {
21+
stdenv.mkDerivation (finalAttrs: {
2222
pname = "eyedropper";
23-
version = "2.0.1";
23+
version = "2.1.0";
2424

2525
src = fetchFromGitHub {
2626
owner = "FineFindus";
2727
repo = "eyedropper";
28-
rev = "v${version}";
29-
hash = "sha256-FyGj0180Wn8iIDTdDqnNEvFYegwdWCsCq+hmyTTUIo4=";
28+
tag = "v${finalAttrs.version}";
29+
hash = "sha256-t/OFA4oDXtnMmyFptG7zsGW5ubaSNrSnaDR1l9nVbLQ=";
3030
};
3131

3232
cargoDeps = rustPlatform.fetchCargoVendor {
33-
inherit src;
34-
name = "${pname}-${version}";
35-
hash = "sha256-nYmH7Nu43TDJKvwfSaBKSihD0acLPmIUQpQM6kV4CAk=";
33+
inherit (finalAttrs) pname src version;
34+
hash = "sha256-39BWpyGhX6fYzxwrodiK1A3ASuRiI7tOA+pSKu8Bx5Q=";
3635
};
3736

3837
nativeBuildInputs = [
@@ -61,10 +60,11 @@ stdenv.mkDerivation rec {
6160
meta = {
6261
description = "Pick and format colors";
6362
homepage = "https://github.com/FineFindus/eyedropper";
63+
changelog = "https://github.com/FineFindus/eyedropper/releases/tag/v${finalAttrs.version}";
6464
mainProgram = "eyedropper";
6565
license = lib.licenses.gpl3Plus;
6666
platforms = lib.platforms.linux;
6767
maintainers = with lib.maintainers; [ zendo ];
6868
teams = [ lib.teams.gnome-circle ];
6969
};
70-
}
70+
})

0 commit comments

Comments
 (0)