Commit 38e0e9b2 authored by Tiago Lagger's avatar Tiago Lagger Committed by Tiago Dinis
Browse files

eww: unstable-2023-08-18 -> 0.5.0



eww: fix github src hash

eww: update cargo hash

Co-authored-by: default avatara-kenji <aks.kenji@protonmail.com>

eww: use `rev = "v${version}"` instead of commit hash

Co-authored-by: default avatarkirillrdy <kirillrdy@gmail.com>
parent 3b70b091
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -12,16 +12,16 @@

rustPlatform.buildRustPackage rec {
  pname = "eww";
  version = "unstable-2023-08-18";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "elkowar";
    repo = "eww";
    rev = "a9a35c1804d72ef92e04ee71555bd9e5a08fa17e";
    hash = "sha256-GEysmNDm+olt1WXHzRwb4ZLifkXmeP5+APAN3b81/Og=";
    rev = "v${version}";
    hash = "sha256-HBBz1NDtj2TnDK5ghDLRrAOwHXDZlzclvVscYnmKGck=";
  };

  cargoHash = "sha256-4yeu5AgleZMOLKNynGMd0XuyZxyyZ+RmzNtuJiNPN8g=";
  cargoHash = "sha256-IirFE714NZmppLjwbWk6fxcmRXCUFzB4oxOxBvmYu5U=";

  nativeBuildInputs = [ pkg-config wrapGAppsHook ];

@@ -43,7 +43,7 @@ rustPlatform.buildRustPackage rec {
    description = "ElKowars wacky widgets";
    homepage = "https://github.com/elkowar/eww";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda lom ];
    maintainers = with maintainers; [ figsoda lom coffeeispower ];
    mainProgram = "eww";
    broken = stdenv.isDarwin;
  };