anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / octofetch / default.nix
blob1218cb1f7b0f3af72acd0dae56d724ac42a774ab
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , openssl
5 , pkg-config
6 , rustPlatform
7 , Security
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "octofetch";
12   version = "0.3.3";
14   src = fetchFromGitHub {
15     owner = "azur1s";
16     repo = pname;
17     rev = version;
18     sha256 = "sha256-/AXE1e02NfxQzJZd0QX6gJDjmFFmuUTOndulZElgIMI=";
19   };
21   cargoHash = "sha256-iuhJYibyQ7hdeXzqCW2PLq7FiKnZp2VHyKT4qO/6vrU=";
23   nativeBuildInputs = [ pkg-config ];
25   buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
26     ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
28   meta = with lib; {
29     homepage = "https://github.com/azur1s/octofetch";
30     description = "Github user information on terminal";
31     license = licenses.mit;
32     maintainers = [ ];
33     mainProgram = "octofetch";
34   };