chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / do / docuum / package.nix
blob68409ca05651bb0bb1b1d7e0a4da259775ecde16
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , stdenv
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "docuum";
10   version = "0.25.0";
12   src = fetchFromGitHub {
13     owner = "stepchowfun";
14     repo = "docuum";
15     rev = "v${version}";
16     hash = "sha256-nWd6h39jU1eZWPFMxhxActsmrs9k0TDMlealuzTa+o0=";
17   };
19   cargoHash = "sha256-uoQ1qUII6TSZsosAdNfs2CREVuN2kuT9Bmi5vuDT/rY=";
21   checkFlags = [
22     # fails, no idea why
23     "--skip=format::tests::code_str_display"
24   ];
26   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
27     darwin.apple_sdk.frameworks.IOKit
28   ];
30   meta = with lib; {
31     description = "Least recently used (LRU) eviction of Docker images";
32     homepage = "https://github.com/stepchowfun/docuum";
33     changelog = "https://github.com/stepchowfun/docuum/blob/${src.rev}/CHANGELOG.md";
34     license = licenses.mit;
35     maintainers = with maintainers; [ mkg20001 ];
36     mainProgram = "docuum";
37   };