nixpkgs/pkgs/tools/misc/rust-motd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
893 B
Nix
Raw Normal View History

2021-10-21 20:30:02 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "rust-motd";
version = "1.0.1";
2021-10-21 20:30:02 +00:00
src = fetchFromGitHub {
owner = "rust-motd";
repo = pname;
rev = "v${version}";
hash = "sha256-x3dx4PdYSYd7wA/GGj9QYC8rK33FWATs2SnaOagGE80=";
2021-10-21 20:30:02 +00:00
};
cargoHash = "sha256-7YvzVG3c10EJET+659F1fwgZ0SmBKMdAWD6LeWnGrNI=";
2021-10-21 20:30:02 +00:00
nativeBuildInputs = [
pkg-config
];
2021-10-21 20:30:02 +00:00
buildInputs = [
openssl
] ++ lib.optionals stdenv.isDarwin [
Security
];
2021-10-21 20:30:02 +00:00
2022-01-07 15:23:04 +00:00
OPENSSL_NO_VENDOR = 1;
2021-10-21 20:30:02 +00:00
meta = with lib; {
description = "Beautiful, useful MOTD generation with zero runtime dependencies";
homepage = "https://github.com/rust-motd/rust-motd";
changelog = "https://github.com/rust-motd/rust-motd/releases/tag/v${version}";
2021-10-21 20:30:02 +00:00
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}