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

Commits on Mar 7, 2020

  1. acgtk: 1.5.0 → 1.5.1 (#81539)

    Co-authored-by: Jon <jonringer@users.noreply.github.com>
    vbgl and Jon authored Mar 7, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dcfccdf View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/applications/science/logic/acgtk/default.nix
11 changes: 6 additions & 5 deletions pkgs/applications/science/logic/acgtk/default.nix
Original file line number Diff line number Diff line change
@@ -2,23 +2,24 @@

stdenv.mkDerivation {

name = "acgtk-1.5.0";
pname = "acgtk";
version = "1.5.1";

src = fetchurl {
url = http://calligramme.loria.fr/acg/software/acg-1.5.0-20181019.tar.gz;
sha256 = "14n003gxzw5w79hlpw1ja4nq97jqf9zqyg00ihvpxw4bv9jlm8jm";
url = https://acg.loria.fr/software/acg-1.5.1-20191113.tar.gz;
sha256 = "17595qfwhzz5q091ak6i6bg5wlppbn8zfn58x3hmmmjvx2yfajn1";
};

buildInputs = [ dune ] ++ (with ocamlPackages; [
ocaml findlib ansiterminal cairo2 fmt logs menhir mtime ocf
ocaml findlib ansiterminal cairo2 cmdliner fmt logs menhir mtime yojson
]);

buildPhase = "dune build";

inherit (dune) installPhase;

meta = with stdenv.lib; {
homepage = http://calligramme.loria.fr/acg/;
homepage = https://acg.loria.fr/;
description = "A toolkit for developing ACG signatures and lexicon";
license = licenses.cecill20;
inherit (ocamlPackages.ocaml.meta) platforms;