571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
51 lines
1.4 KiB
Nix
51 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, cmake, recode, perl, rinutils, withOffensive ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fortune-mod";
|
|
version = "3.22.0";
|
|
|
|
# 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/fortune-mod-${version}/fortune-mod-${version}.tar.xz";
|
|
sha256 = "sha256-BpMhu01K46v1VJPQQ86gZTTck/Giwp6GaU2e2xOAoOM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake perl rinutils ];
|
|
|
|
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(
|
|
--
|
|
'') ];
|
|
|
|
postFixup = lib.optionalString (!withOffensive) ''
|
|
rm $out/share/games/fortunes/men-women*
|
|
'';
|
|
|
|
meta = with lib; {
|
|
mainProgram = "fortune";
|
|
description = "Program that displays a pseudorandom message from a database of quotations";
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ vonfry ];
|
|
};
|
|
}
|