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

Commits on Nov 6, 2020

  1. ocamlPackages.owl: 0.9.0 → 0.10.0

    vbgl authored and ehmry committed Nov 6, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    75b5938 View commit details
Showing with 6 additions and 10 deletions.
  1. +6 −10 pkgs/development/ocaml-modules/owl-base/default.nix
16 changes: 6 additions & 10 deletions pkgs/development/ocaml-modules/owl-base/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
{ lib, buildDunePackage, fetchurl }:

buildDunePackage rec {
pname = "owl-base";
version = "0.9.0";
version = "0.10.0";

useDune2 = true;

src = fetchFromGitHub {
owner = "owlbarn";
repo = "owl";
rev = version;
sha256 = "0xxchsymmdbwszs6barqq8x4vqz5hbap64yxq82c2la9sdxgk0vv";
src = fetchurl {
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
sha256 = "148ny2cdzga1l36kcibvlz5xlyi5zvkywifxaqn8lf79n1swmlzf";
};

propagatedBuildInputs = [ stdlib-shims ];

minimumOCamlVersion = "4.10";

meta = with stdenv.lib; {
meta = with lib; {
description = "Numerical computing library for Ocaml";
homepage = "https://ocaml.xyz";
changelog = "https://github.com/owlbarn/owl/releases";