Unverified Commit baa3f517 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

lstr: add DieracDelta as maintainer; slim derivation (#417874)

parents 869bfe71 413bf935
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -5,10 +5,8 @@
  fetchFromGitHub,
  pkg-config,
  gitMinimal,
  libgit2,
  openssl,
  versionCheckHook,
  zlib,
}:

rustPlatform.buildRustPackage (finalAttrs: {
@@ -26,11 +24,7 @@ rustPlatform.buildRustPackage (finalAttrs: {

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [
    libgit2
    openssl
    zlib
  ];
  buildInputs = [ (lib.getDev openssl) ];

  nativeCheckInputs = [ gitMinimal ];

@@ -43,7 +37,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
    homepage = "https://github.com/bgreenwell/lstr";
    changelog = "https://github.com/bgreenwell/lstr/blob/v${finalAttrs.version}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ philiptaron ];
    maintainers = with lib.maintainers; [
      DieracDelta
      philiptaron
    ];
    mainProgram = "lstr";
  };
})