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: 84f862ed9142
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5e468ef98191
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 8, 2020

  1. ocsigen-i18n: 3.4.0 → 3.5.0

    vbgl committed Mar 8, 2020
    Copy the full SHA
    5e468ef View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
11 changes: 5 additions & 6 deletions pkgs/development/tools/ocaml/ocsigen-i18n/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{ stdenv, fetchurl, ocamlPackages }:
{ stdenv, fetchzip, ocamlPackages }:

stdenv.mkDerivation rec
{
pname = "ocsigen-i18n";
version = "3.4.0";

buildInputs = with ocamlPackages; [ ocaml findlib ];
version = "3.5.0";

buildInputs = with ocamlPackages; [ ocaml findlib ppx_tools ];

dontStrip = true;

@@ -15,9 +14,9 @@ stdenv.mkDerivation rec
make bindir=$out/bin install
'';

src = fetchurl {
src = fetchzip {
url = "https://github.com/besport/${pname}/archive/${version}.tar.gz";
sha256 = "0i7cck6zlgwjpksb4s1jpy193h85jixf4d0nmqj09y3zcpn2i8gb";
sha256 = "1qsgwfl64b53w235wm7nnchqinzgsvd2gb52xm0kra2wlwp69rfq";
};

meta = {