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

Commits on Oct 25, 2018

  1. ocamlPackages.vg: 0.9.0 -> 0.9.1

    vbgl committed Oct 25, 2018
    Copy the full SHA
    c640f02 View commit details
  2. Merge pull request #49091 from vbgl/ocaml-vg-0.9.1

    ocamlPackages.vg: 0.9.0 -> 0.9.1
    srhb authored Oct 25, 2018
    Copy the full SHA
    c4cc3af View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/ocaml-modules/vg/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/ocaml-modules/vg/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ let
inherit (stdenv.lib) optionals versionAtLeast;

pname = "vg";
version = "0.9.0";
version = "0.9.1";
webpage = "http://erratique.ch/software/${pname}";
in

@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "1czd2fq85hy24w5pllarsq4pvbx9rda5zdikxfxdng8s9kff2h3f";
sha256 = "07h9a464v0x066mjg3ldkaq94ah47b7rvh54z4rndrg7v6bk7kyp";
};

buildInputs = [ ocaml findlib ocamlbuild topkg ];
@@ -54,8 +54,8 @@ stdenv.mkDerivation rec {
module. An API allows to implement new renderers.
'';
homepage = "${webpage}";
platforms = ocaml.meta.platforms or [];
license = licenses.bsd3;
inherit (ocaml.meta) platforms;
license = licenses.isc;
maintainers = [ maintainers.jirkamarsik ];
};
}