nixpkgs/pkgs/tools/misc/fortune/default.nix

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

51 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, recode, perl, withOffensive ? false }:
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "fortune-mod";
2022-08-13 09:32:04 +00:00
version = "3.14.1";
2020-10-29 11:22:09 +00:00
# We use fetchurl instead of fetchFromGitHub because the release pack has some
# special files.
src = fetchurl {
2020-10-29 11:22:09 +00:00
url = "https://github.com/shlomif/fortune-mod/releases/download/${pname}-${version}/${pname}-${version}.tar.xz";
2022-08-13 09:32:04 +00:00
sha256 = "sha256-NnAj9dsB1ZUuTm2W8mPdK2h15Dtro8ve6c+tPoKUsXs=";
};
nativeBuildInputs = [ cmake perl ];
buildInputs = [ recode ];
cmakeFlags = [
"-DLOCALDIR=${placeholder "out"}/share/fortunes"
] ++ lib.optional (!withOffensive) "-DNO_OFFENSIVE=true";
patches = [ (builtins.toFile "not-a-game.patch" ''
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 865e855..5a59370 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -154,7 +154,7 @@ ENDMACRO()
my_exe(
"fortune"
"fortune/fortune.c"
- "games"
+ "bin"
)
my_exe(
2020-10-29 11:22:09 +00:00
--
'') ];
postFixup = lib.optionalString (!withOffensive) ''
rm -f $out/share/fortunes/men-women*
'';
meta = with lib; {
mainProgram = "fortune";
description = "A program that displays a pseudorandom message from a database of quotations";
2018-08-16 19:55:12 +00:00
license = licenses.bsdOriginal;
platforms = platforms.unix;
2020-10-29 11:22:09 +00:00
maintainers = with maintainers; [ vonfry ];
};
}