Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / or / ord / package.nix
blob517258d3f4ba8296e18950c11b85d81bb446620e
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , openssl
6 , stdenv
7 , darwin
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "ord";
12   version = "0.19.1";
14   src = fetchFromGitHub {
15     owner = "ordinals";
16     repo = "ord";
17     rev = version;
18     hash = "sha256-psZ0NrCjRuRepatEcEMSVbw8JHD5Nh/vUXSxiGqDyfg=";
19   };
21   cargoHash = "sha256-gxIQZm5uZqdJ1ou6lghinj4Roi/L5HHb+d+i0t5HdaU=";
23   nativeBuildInputs = [
24     pkg-config
25   ];
27   buildInputs = [
28     openssl
29   ] ++ lib.optionals stdenv.isDarwin [
30     darwin.apple_sdk.frameworks.Security
31     darwin.apple_sdk.frameworks.SystemConfiguration
32   ];
34   dontUseCargoParallelTests = true;
36   checkFlags = [
37     "--skip=subcommand::server::tests::status" # test fails if it built from source tarball
38   ];
40   meta = with lib; {
41     description = "Index, block explorer, and command-line wallet for Ordinals";
42     homepage = "https://github.com/ordinals/ord";
43     changelog = "https://github.com/ordinals/ord/blob/${src.rev}/CHANGELOG.md";
44     license = licenses.cc0;
45     maintainers = with maintainers; [ xrelkd ];
46     mainProgram = "ord";
47   };