fortune: 2.6.2 -> 2.10.0, use official tarball

This commit is contained in:
Will Dietz 2019-09-03 11:19:00 -05:00
parent 460927aae7
commit f0485a8524
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02

View file

@ -1,37 +1,38 @@
{ stdenv, fetchurl, cmake, recode, perl }: { stdenv, fetchurl, cmake, recode, perl }:
let srcs = { stdenv.mkDerivation rec {
fortune = fetchurl {
url = "https://github.com/shlomif/fortune-mod/archive/fortune-mod-${version}.tar.gz";
sha256 = "89223bb649ea62b030527f181539182d6a17a1a43b0cc499a52732b839f7b691";
};
shlomifCommon = fetchurl {
url = https://bitbucket.org/shlomif/shlomif-cmake-modules/raw/default/shlomif-cmake-modules/Shlomif_Common.cmake;
sha256 = "62f188a9f1b7ab0e757eb0bc6540d9c0026d75edc7acc1c3cdf7438871d0a94f";
};
};
version = "2.6.2";
in
stdenv.mkDerivation {
pname = "fortune-mod"; pname = "fortune-mod";
inherit version; version = "2.10.0";
src = srcs.fortune; src = fetchurl {
url = "https://www.shlomifish.org/open-source/projects/fortune-mod/arcs/fortune-mod-${version}.tar.xz";
sourceRoot = "fortune-mod-fortune-mod-${version}/fortune-mod"; sha256 = "07g50hij87jb7m40pkvgd47qfvv4s805lwiz79jbqcxzd7zdyax7";
};
nativeBuildInputs = [ cmake perl ]; nativeBuildInputs = [ cmake perl ];
buildInputs = [ recode ]; buildInputs = [ recode ];
preConfigure = '' cmakeFlags = [
cp ${srcs.shlomifCommon} cmake/Shlomif_Common.cmake "-DLOCALDIR=${placeholder "out"}/share/fortunes"
''; ];
postInstall = '' patches = [ (builtins.toFile "not-a-game.patch" ''
mv $out/games/fortune $out/bin/fortune diff --git a/CMakeLists.txt b/CMakeLists.txt
rm -r $out/games 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 stdenv.lib; { meta = with stdenv.lib; {
description = "A program that displays a pseudorandom message from a database of quotations"; description = "A program that displays a pseudorandom message from a database of quotations";