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

Commits on Nov 12, 2020

  1. Copy the full SHA
    e580eac View commit details
  2. Merge pull request #103625 from gebner/opencascade750

    opencascade-occt: 7.4.0p1 -> 7.5.0
    gebner authored Nov 12, 2020
    Copy the full SHA
    28136b4 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/opencascade-occt/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/opencascade-occt/default.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
pname = "opencascade-occt";
version = "7.4.0p1";
version = "7.5.0";
commit = "V${builtins.replaceStrings ["."] ["_"] version}";

src = fetchurl {
name = "occt-${commit}.tar.gz";
url = "https://git.dev.opencascade.org/gitweb/?p=occt.git;a=snapshot;h=${commit};sf=tgz";
sha256 = "0b9hs3akx1f3hhg4zdip6qdv04ssqqcf9kk12amkidgvsl73z2hs";
sha256 = "0bpzpaqki3k6i7xmhan0f1c1fr05smpcmgrp4vh572j61lwpq1r3";
};

nativeBuildInputs = [ cmake ninja ];