Commit b790ee99 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 1af0258a
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -11,16 +11,18 @@

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "oboete";
  version = "0.2.3";
  version = "0.2.4";

  strictDeps = true;

  src = fetchFromGitHub {
    owner = "mariinkys";
    repo = "oboete";
    tag = finalAttrs.version;
    hash = "sha256-Ydl6gVlE/6dN/qp348wc626TSG8FIBv2U7H/FVahrOs=";
    hash = "sha256-QP0ZK6E3rz9WCvglJek8S25O8X5b8iyPAk7eph4lqMg=";
  };

  cargoHash = "sha256-R8y0UpSY8K5yMZK719eXb+R9ABllpRV/QoAcISV138w=";
  cargoHash = "sha256-ZEve4uKhbcps8FFRGizA6tedz2aH0j4gKTi3HauxpFE=";

  nativeBuildInputs = [
    libcosmicAppHook
@@ -48,7 +50,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  meta = {
    description = "Simple flashcards application for the COSMIC™ desktop written in Rust";
    homepage = "https://github.com/mariinkys/oboete";
    changelog = "https://github.com/mariinkys/oboete/releases/tag/${finalAttrs.version}";
    changelog = "https://github.com/mariinkys/oboete/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [
      GaetanLepage