mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
fortune-kind: init at 0.1.3
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
8d1eaad1ab
commit
fa9985b9da
70
pkgs/by-name/fo/fortune-kind/package.nix
Normal file
70
pkgs/by-name/fo/fortune-kind/package.nix
Normal file
|
@ -0,0 +1,70 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, darwin
|
||||
, libiconv
|
||||
, makeBinaryWrapper
|
||||
, installShellFiles
|
||||
, fortuneAlias ? true
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fortune-kind";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cafkafk";
|
||||
repo = "fortune-kind";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-q4r1Qdyh2L1vTi+CKln+a9lKGgyRAhvg1aJRd0CIEJs=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-ArVOGWaKbge8nxxGpAT8TttFZYJpuFF5u/tHYC9Qkeo=";
|
||||
|
||||
nativeBuildInputs = [ makeBinaryWrapper installShellFiles ];
|
||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
|
||||
|
||||
buildNoDefaultFeatures = true;
|
||||
|
||||
MAN_OUT = "./man";
|
||||
|
||||
preBuild = ''
|
||||
mkdir -p "./$MAN_OUT";
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
installManPage man/fortune-kind.1
|
||||
installShellCompletion \
|
||||
--fish man/fortune-kind.fish \
|
||||
--bash man/fortune-kind.bash \
|
||||
--zsh man/_fortune-kind
|
||||
mkdir -p $out
|
||||
cp -r $src/fortunes $out/fortunes;
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/fortune-kind \
|
||||
--prefix FORTUNE_DIR : "$out/fortunes"
|
||||
''+ lib.optionalString fortuneAlias ''
|
||||
ln -s fortune-kind $out/bin/fortune
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A kinder, curated fortune, written in rust";
|
||||
longDescription = ''
|
||||
Historically, contributions to fortune-mod have had a less-than ideal
|
||||
quality control process, and as such, many of the fortunes that a user may
|
||||
receive from the program read more like cryptic inside jokes, or at the
|
||||
very worst, locker-room banter. One of the major goals of fortune-kind is
|
||||
defining and applying a somewhat more rigorous moderation and editing
|
||||
process to the fortune adoption workflow.
|
||||
'';
|
||||
homepage = "https://github.com/cafkafk/fortune-kind";
|
||||
changelog = "https://github.com/cafkafk/fortune-kind/releases/tag/v${version}";
|
||||
license = licenses.gpl3Only;
|
||||
mainProgram = "fortune-kind";
|
||||
maintainers = with maintainers; [ cafkafk ];
|
||||
platforms = platforms.unix ++ platforms.windows;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue