python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / lurk / default.nix
blob3a7d00dea2cb7291a6c0bc5c14e97ee07bde1496
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "lurk";
5   version = "0.2.9";
7   src = fetchFromGitHub {
8     owner = "jakwai01";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-Vvz1CWNpMbVpICL42VQHLM7AWSONGSXP5kfZ8rZlw8M=";
12   };
14   cargoSha256 = "sha256-AoFkgm13vj/18GOuSIgzs+xk82lSQ6zGpq4QVWcClv8=";
16   meta = with lib; {
17     description = "A simple and pretty alternative to strace";
18     homepage = "https://github.com/jakwai01/lurk";
19     license = licenses.agpl3Only;
20     maintainers = with maintainers; [ figsoda ];
21     platforms = [ "i686-linux" "x86_64-linux" ];
22   };