Commit 5fd9608e authored by Guillaume Girol's avatar Guillaume Girol
Browse files

nix-du: 1.2.1 -> 1.2.2

Lix support

Co-Authored-By: ethancedwards8
parent 73cf49b8
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -13,17 +13,17 @@

rustPlatform.buildRustPackage rec {
  pname = "nix-du";
  version = "1.2.1";
  version = "1.2.2";

  src = fetchFromGitHub {
    owner = "symphorien";
    repo = "nix-du";
    rev = "v${version}";
    sha256 = "sha256-WImnfkBU17SFQG1DzVUdsNq3hkiISNjAVZr2xGbgwHg=";
    tag = "v${version}";
    hash = "sha256-RkGPXjog2XR3ISlWMQZ1rzy3SwE5IPAKP09FIZ6LwkM=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-HUyqkO9uPrfqTCljJzKfQ5sRCh4uj8XL4wSkwmc/Z8A=";
  cargoHash = "sha256-rrBFgE3Tz68gBQbz006RSdsqacSZqON78NM4FNi+wrk=";

  doCheck = true;
  nativeCheckInputs = [
@@ -49,5 +49,6 @@ rustPlatform.buildRustPackage rec {
    maintainers = [ maintainers.symphorien ];
    platforms = platforms.unix;
    mainProgram = "nix-du";
    changelog = "https://github.com/symphorien/nix-du/blob/v${version}/CHANGELOG.md";
  };
}