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

Commits on Mar 11, 2019

  1. opaline: 0.3.1 -> 0.3.2

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/opaline/versions
    r-ryantm committed Mar 11, 2019
    Copy the full SHA
    fe83591 View commit details

Commits on Mar 28, 2019

  1. Merge pull request #57346 from r-ryantm/auto-update/opaline

    opaline: 0.3.1 -> 0.3.2
    infinisil authored Mar 28, 2019
    Copy the full SHA
    b924318 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/ocaml/opaline/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/ocaml/opaline/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, ocamlPackages }:

stdenv.mkDerivation rec {
version = "0.3.1";
version = "0.3.2";
name = "opaline-${version}";

src = fetchFromGitHub {
owner = "jaapb";
repo = "opaline";
rev = "v${version}";
sha256 = "0vd5xaf272hk4iqfj347jvbppy7my5p5gz8yqpkvl1d1i6lzh08v";
sha256 = "1aj1fdqymq3pnr39h47hn3kxk5v9pnwx0jap1z2jzh78x970z21m";
};

buildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild opam-file-format ];