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

Commits on Oct 23, 2020

  1. nuspell: 3.1.2 -> 4.0.0, fix license

    The license of Nuspell is not GPL-3.0-only but LGPL-3.0-or-later.
    
    Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
    omasanori committed Oct 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    dadada Tim Schubert
    Copy the full SHA
    0075ec3 View commit details

Commits on Oct 29, 2020

  1. Merge pull request #101512 from omasanori/nuspell-4.0.0

    nuspell: 3.1.2 -> 4.0.0, fix license
    dywedir authored Oct 29, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    dadada Tim Schubert
    Copy the full SHA
    4bbd356 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/nuspell/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/nuspell/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "nuspell";
version = "3.1.2";
version = "4.0.0";

src = fetchFromGitHub {
owner = "nuspell";
repo = "nuspell";
rev = "v${version}";
sha256 = "0wbb6dwmzlsyy224y0liis0azgzwbjdvcyzc31pw1aw6vbp36na6";
sha256 = "1jfnwva2i67i9pyh123a5h2zs5p7gw77qh4w7qkx61jigsyxc5v7";
};

nativeBuildInputs = [ cmake pkgconfig ronn ];
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
description = "Free and open source C++ spell checking library";
homepage = "https://nuspell.github.io/";
maintainers = with maintainers; [ fpletz ];
license = licenses.gpl3;
license = licenses.lgpl3Plus;
};
}