Unverified Commit 9e063f90 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

eyedropper: 2.0.1 -> 2.1.0 (#392592)

parents e4fd7d90 45aa4ef2
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})