Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 746b2d616201
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 07e7f1325acd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 13, 2020

  1. fortune: 3.2.0 -> 3.4.1

    r-ryantm committed Nov 13, 2020
    Copy the full SHA
    26f1edb View commit details
  2. Merge pull request #103681 from r-ryantm/auto-update/fortune-mod

    fortune: 3.2.0 -> 3.4.1
    ryantm authored Nov 13, 2020
    Copy the full SHA
    07e7f13 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/misc/fortune/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/misc/fortune/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "fortune-mod";
version = "3.2.0";
version = "3.4.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 = "0j554ja4min5rbqni8qn5gzk4xiyd643b8r50jyi32pcs88dwp7n";
sha256 = "02hjf432mq5qpbf1hywid7b356jys5n9brrrmm6z6r05jpzybbg3";
};

nativeBuildInputs = [ cmake perl ];