Unverified Commit e9fa33e1 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

conceal: 0.5.5 -> 0.6.1 (#400175)

parents fad53591 4fc83129
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -8,19 +8,21 @@
  conceal,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "conceal";
  version = "0.5.5";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "TD-Sky";
    repo = "conceal";
    rev = "v${version}";
    sha256 = "sha256-BYLDSRgBba6SoGsL/NTV/OTG1/V9RSr8lisj42JqBRM=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-kgJcxckXfwnKZ3MyJ+GE1LiQmu9YdfqFrtL9gBJ330E=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-yCHN7N+hRrWfuCEBA6gh2S/rRP+ZkHCjFBGGY9/LTb4=";
  cargoHash = "sha256-Ym/HnUOLIKfCFWgusx92QeQYaNp9tfrhg5V1h02q3e0=";

  env.CONCEAL_GEN_COMPLETIONS = "true";

  nativeBuildInputs = [ installShellFiles ];

@@ -36,17 +38,17 @@ rustPlatform.buildRustPackage rec {
  passthru.tests = testers.testVersion {
    package = conceal;
    command = "conceal --version";
    version = "conceal ${version}";
    version = "conceal ${finalAttrs.version}";
  };

  meta = with lib; {
  meta = {
    description = "Trash collector written in Rust";
    homepage = "https://github.com/TD-Sky/conceal";
    license = licenses.mit;
    maintainers = with maintainers; [
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      jedsek
      kashw2
    ];
    broken = stdenv.hostPlatform.isDarwin;
  };
}
})