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: 0ba1f0aa727b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6738033727ca
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Oct 13, 2018

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    vbgl Vincent Laporte
    Copy the full SHA
    6738033 View commit details
Showing with 16 additions and 10 deletions.
  1. +6 −0 lib/licenses.nix
  2. +4 −4 pkgs/applications/science/logic/alt-ergo/default.nix
  3. +5 −3 pkgs/development/ocaml-modules/ocplib-simplex/default.nix
  4. +1 −3 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions lib/licenses.nix
Original file line number Diff line number Diff line change
@@ -500,6 +500,12 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
fullName = "Non-Profit Open Software License 3.0";
};

ocamlpro_nc = {
fullName = "OCamlPro Non Commercial license version 1";
url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-2.2.0/OCamlPro-Non-Commercial-License.pdf";
free = false;
};

ofl = spdx {
spdxId = "OFL-1.1";
fullName = "SIL Open Font License 1.1";
8 changes: 4 additions & 4 deletions pkgs/applications/science/logic/alt-ergo/default.nix
Original file line number Diff line number Diff line change
@@ -2,21 +2,21 @@

stdenv.mkDerivation rec {
name = "alt-ergo-${version}";
version = "1.30";
version = "2.2.0";

src = fetchurl {
url = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
name = "${name}.tar.gz";
sha256 = "025pacb4ax864fn5x8k78mw6hiig4jcazblj18gzxspg4f1l5n1g";
sha256 = "106zfgisq6qxr7dlk8z7gi68ly7qff4frn8wab2g8z2nkkwla92w";
};

buildInputs = with ocamlPackages;
[ ocaml findlib camlzip ocamlgraph zarith lablgtk ocplib-simplex ];
[ ocaml findlib camlzip ocamlgraph zarith lablgtk ocplib-simplex psmt2-frontend menhir num ];

meta = {
description = "High-performance theorem prover and SMT solver";
homepage = "https://alt-ergo.ocamlpro.com/";
license = stdenv.lib.licenses.cecill-c; # LGPL-2 compatible
license = stdenv.lib.licenses.ocamlpro_nc;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
8 changes: 5 additions & 3 deletions pkgs/development/ocaml-modules/ocplib-simplex/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

let
pname = "ocplib-simplex";
version = "0.3";
version = "0.4";
in

stdenv.mkDerivation {
@@ -11,13 +11,15 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "OCamlPro-Iguernlala";
repo = pname;
rev = version;
sha256 = "1fmz38w2cj9fny4adqqyil59dvndqkr59s7wk2gqs47r72b6sisa";
rev = "v${version}";
sha256 = "09niyidrjzrj8g1qwx4wgsdf5m6cwrnzg7zsgala36jliic4di60";
};

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ocaml findlib ];

installFlags = "LIBDIR=$(OCAMLFIND_DESTDIR)";

createFindlibDestdir = true;

meta = {
4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21171,9 +21171,7 @@ with pkgs;
ocamlPackages = ocaml-ng.ocamlPackages_4_05;
};

alt-ergo = callPackage ../applications/science/logic/alt-ergo {
ocamlPackages = ocaml-ng.ocamlPackages_4_05;
};
alt-ergo = callPackage ../applications/science/logic/alt-ergo {};

aspino = callPackage ../applications/science/logic/aspino {};