eyedropper 0.5.0 -> 0.5.1 https://github.com/FineFindus/eyedropper/releases attrpath: eyedropper Checking auto update branch... No auto update branch exists Old version 0.5.0" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , rustPlatform , pkg-config , meson , ninja , glib , gtk4 , libadwaita , wrapGAppsHook4 , appstream-glib , desktop-file-utils }: stdenv.mkDerivation rec { pname = "eyedropper"; version = "0.5.1"; src = fetchFromGitHub { owner = "FineFindus"; repo = pname; rev = "v${version}"; hash = "sha256-kc/UREQpmw3suA6bYEr9fCIwMzNMrEY9E5qf+rhKsC4="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; hash = "sha256-/eas1PObrj9IuDIzlBVbfhEhH8eDyZ7CD871JmAqnyY="; }; nativeBuildInputs = [ meson ninja pkg-config wrapGAppsHook4 appstream-glib desktop-file-utils ] ++ (with rustPlatform; [ rust.cargo rust.rustc cargoSetupHook ]); buildInputs = [ glib gtk4 libadwaita ]; meta = with lib; { description = "An easy-to-use color picker and editor"; homepage = "https://github.com/FineFindus/eyedropper"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = with maintainers; [ zendo ]; }; }