nixpkgs/pkgs/by-name/ru/rusti-cal/package.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

33 lines
748 B
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "rusti-cal";
version = "1.1.0";
src = fetchFromGitHub {
owner = "arthurhenrique";
repo = "rusti-cal";
rev = "v${version}";
hash = "sha256-pdsP2nuJh30BzqIyxSQXak/rceA4hI9jBYy1dDVEIvI=";
};
cargoHash = "sha256-5eS+OMaNAVNyDMKFNfb0J0rLsikw2LCXhWk7MS9UV2k=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Foundation
];
meta = with lib; {
description = "Minimal command line calendar, similar to cal";
mainProgram = "rusti-cal";
homepage = "https://github.com/arthurhenrique/rusti-cal";
license = [ licenses.mit ];
maintainers = [ maintainers.detegr ];
};
}