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: 550f508bde31
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a43702d670ab
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 12, 2019

  1. ocamlPackages.utop: fix source

    By using the provided tbz file instead of the auto-generated GitHub
    tarball, we ensure that strings like %%VERSION%% have been properly
    generated.
    Zimmi48 committed Nov 12, 2019
    Copy the full SHA
    72ef651 View commit details
  2. Merge pull request #73283 from Zimmi48/fix-utop-src

    ocamlPackages.utop: fix source
    Mic92 authored Nov 12, 2019
    Copy the full SHA
    a43702d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/ocaml/utop/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/ocaml/utop/default.nix
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
version = "2.4.2";

src = fetchurl {
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
sha256 = "0fl8524vmxb9yxjwrh5varvfp0ff3sgfp627knwbxxr69w45ad8h";
url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz";
sha256 = "0y2v8rkfz19nlz8gh0lkh5wx5hyvw5gl4nw1kg8j2pw9jnilq5nb";
};

nativeBuildInputs = [ makeWrapper ];