Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / hy / hyperlink / package.nix
blob8f89a0081062038a3a5ccae1a0ef329041c237b6
1 { rustPlatform
2 , lib
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "hyperlink";
8   version = "0.1.32";
10   src = fetchFromGitHub {
11     owner = "untitaker";
12     repo = "hyperlink";
13     rev = version;
14     hash = "sha256-QejpyleugPWvr4p8JOMieswVtfQMGxtH+fb46mRLlH4=";
15   };
17   cargoHash = "sha256-d0JwxxI6Quyan2lgymxGpROKR757LEOUIgJcs5c9Kmc=";
19   meta = with lib; {
20     description = "Very fast link checker for CI";
21     homepage = "https://github.com/untitaker/hyperlink";
22     license = licenses.mit;
23     maintainers = [ ];
24     mainProgram = "hyperlink";
25   };