python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / natls / default.nix
blob368291f60d9a72e94d73a1702ba2720dc721dee8
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "natls";
8   version = "2.1.14";
10   src = fetchFromGitHub {
11     owner = "willdoescode";
12     repo = "nat";
13     rev = "v${version}";
14     sha256 = "sha256-4x92r6V9AvEO88gFofPTUt+mS7ZhmptDn/8O4pizSRg=";
15   };
17   cargoSha256 = "sha256-Am4HmfmhskKxcp1iWod5z3caHwsdo31qCaVi0UxTXAg=";
19   meta = with lib; {
20     description = "the 'ls' replacement you never knew you needed";
21     homepage = "https://github.com/willdoescode/nat";
22     license = licenses.mit;
23     maintainers = with maintainers; [ msfjarvis ];
24   };