chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / do / dotslash / package.nix
blob90bfc0a7b7a1e8d9569045793efe85780badf25d
1 { lib, rustPlatform, fetchCrate
2 , testers, nix-update-script, dotslash
3 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "dotslash";
7   version = "0.4.1";
9   src = fetchCrate {
10     inherit pname version;
11     hash = "sha256-d9ig6YO5kx4Qd8Ut70U4X+t8a9+MUyzPoDF/y7avP38=";
12   };
14   cargoHash = "sha256-URZ6HfyfY2Fh4iVMoG4OkQFFuLIRV7s5hlZLUFzeUvA=";
15   doCheck = false; # http tests
17   passthru = {
18     updateScript = nix-update-script { };
19     tests = testers.testVersion {
20       package = dotslash;
21     };
22   };
24   meta = with lib; {
25     homepage = "https://dotslash-cli.com";
26     description = "Simplified multi-platform executable deployment";
27     longDescription = ''
28       DotSlash is a command-line tool that is designed to facilitate fetching an
29       executable, verifying it, and then running it. It maintains a local cache
30       of fetched executables so that subsequent invocations are fast.
32       DotSlash helps keeps heavyweight binaries out of your repo while ensuring
33       your developers seamlessly get the tools they need, ensuring consistent
34       builds across platforms.
35     '';
36     license = with licenses; [ asl20 /* or */ mit ];
37     mainProgram = "dotslash";
38     maintainers = with maintainers; [ thoughtpolice ];
39   };