Unverified Commit 0607491d authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

fend: clean-up (#410116)

parents 63dd26ed a0d86ee2
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@
  fend,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "fend";
  version = "1.5.6";

  src = fetchFromGitHub {
    owner = "printfn";
    repo = "fend";
    rev = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-FaPP7344rb5789CeDv9L4lysiTrK+7UoEbH8IK/6N3k=";
  };

@@ -96,7 +96,7 @@ rustPlatform.buildRustPackage rec {
  meta = {
    description = "Arbitrary-precision unit-aware calculator";
    homepage = "https://github.com/printfn/fend";
    changelog = "https://github.com/printfn/fend/releases/tag/v${version}";
    changelog = "https://github.com/printfn/fend/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      djanatyn
@@ -104,4 +104,4 @@ rustPlatform.buildRustPackage rec {
    ];
    mainProgram = "fend";
  };
}
})