4f3f62599d
this will make it work with nix run
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, cmake, recode, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fortune-mod";
|
|
version = "3.6.1";
|
|
|
|
# We use fetchurl instead of fetchFromGitHub because the release pack has some
|
|
# special files.
|
|
src = fetchurl {
|
|
url = "https://github.com/shlomif/fortune-mod/releases/download/${pname}-${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1cw7xf9xhh6d73y4h4q57g6akjhc1gq6xv37k57sx0wx77wjxqdp";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
|
|
buildInputs = [ recode ];
|
|
|
|
cmakeFlags = [
|
|
"-DLOCALDIR=${placeholder "out"}/share/fortunes"
|
|
];
|
|
|
|
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(
|
|
--
|
|
'') ];
|
|
|
|
meta = with lib; {
|
|
mainProgram = "fortune";
|
|
description = "A program that displays a pseudorandom message from a database of quotations";
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ vonfry ];
|
|
};
|
|
}
|