python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / lfs / default.nix
blob5ffbe07b3755eeb387b8d00cd7d9ce7dda4006f6
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "lfs";
8   version = "2.6.0";
10   src = fetchFromGitHub {
11     owner = "Canop";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-+BkHE4vl1oYNR5SX2y7Goly7OwGDXRoZex6YL7Xv2QI=";
15   };
17   cargoSha256 = "sha256-njrjuLHDmcubw8lLPpS9K5la0gRIKq4OrP+MXs1Ro/o=";
19   meta = with lib; {
20     description = "Get information on your mounted disks";
21     homepage = "https://github.com/Canop/lfs";
22     license = licenses.mit;
23     maintainers = with maintainers; [ koral ];
24   };