biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / htmlq / default.nix
blob6a5015c600fc26ab86b0bad3a9b30de272c5ad3c
1 { lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "htmlq";
5   version = "0.4.0";
7   src = fetchFromGitHub {
8     owner = "mgdm";
9     repo = "htmlq";
10     rev = "v${version}";
11     sha256 = "sha256-kZtK2QuefzfxxuE1NjXphR7otr+RYfMif/RSpR6TxY0=";
12   };
14   cargoSha256 = "sha256-r9EnQQPGpPIcNYb1eqGrMnRdh0snIa5iVsTYTI+YErY=";
16   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
18   doCheck = false;
20   meta = with lib; {
21     description = "Like jq, but for HTML";
22     homepage = "https://github.com/mgdm/htmlq";
23     license = licenses.mit;
24     maintainers = with maintainers; [ siraben nerdypepper ];
25     mainProgram = "htmlq";
26   };