Commit fa95d781 authored by Guillaume Girol's avatar Guillaume Girol Committed by Jörg Thalheim
Browse files

nix-du: 1.2.3 -> 1.2.4

parent b12141ef
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -3,36 +3,34 @@
  fetchFromGitHub,
  rustPlatform,
  nixVersions,
  nlohmann_json,
  boost,
  nix ? nixVersions.nix_2_34,
  graphviz,
  pkg-config,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "nix-du";
  version = "1.2.3";
  version = "1.2.4";

  src = fetchFromGitHub {
    owner = "symphorien";
    repo = "nix-du";
    tag = "v${finalAttrs.version}";
    hash = "sha256-/Afp0InA/0xXdombAzylYJF9wcv5WwYizVsP+fHTDrM=";
    hash = "sha256-pqsBWdCdLEdkubcVMuZzF425oU2zgsMSPeDElM+zYBE=";
  };

  cargoHash = "sha256-Q/woxGh1I6FpgJ5D0x7KovSwuRXfZzqjzwljaoKj0/Y=";
  cargoHash = "sha256-xotbDCuWUeahVsRoOiBdZDC3JpK2a9osbSyVtUyaBrg=";

  doCheck = true;
  nativeCheckInputs = [
    nixVersions.nix_2_28
    nix
    graphviz
  ];

  buildInputs = [
    boost
    nixVersions.nix_2_28
    nlohmann_json
  ];
    nix
  ]
  ++ nix.buildInputs;

  nativeBuildInputs = [
    pkg-config
+5 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
  nixpkgs-reviewFull,
  nil,
  nix-direnv,
  nix-du,
  nix-fast-build,
  haskell,
  nix-serve-ng,
@@ -127,6 +128,10 @@ let
            nix = self.lix;
          };

          nix-du = nix-du.override {
            nix = self.lix;
          };

          nix-eval-jobs = self.callPackage (callPackage ./common-nix-eval-jobs.nix nix-eval-jobs-args) {
            stdenv = lixStdenv;
          };