Unverified Commit 0ed82cf3 authored by Defelo's avatar Defelo
Browse files

kanidm-provision: remove `with lib;`

parent 2a1e1c64
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -18,14 +18,14 @@ rustPlatform.buildRustPackage (finalAttrs: {
  useFetchCargoVendor = true;
  cargoHash = "sha256-kbctfPhEF1PdVLjE62GyLDzjOnZxH/kOWUS4x2vd/+8=";

  meta = with lib; {
  meta = {
    description = "A small utility to help with kanidm provisioning";
    homepage = "https://github.com/oddlama/kanidm-provision";
    license = with licenses; [
    license = with lib.licenses; [
      asl20
      mit
    ];
    maintainers = with maintainers; [ oddlama ];
    maintainers = with lib.maintainers; [ oddlama ];
    mainProgram = "kanidm-provision";
  };
})