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: 58e0c7b8ced6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af82b55eccc9
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 2, 2019

  1. solr: 7.7.1 -> 7.7.2

    aanderse committed Aug 2, 2019
    Copy the full SHA
    458f6ba View commit details
  2. solr: 8.1.1 -> 8.2.0

    aanderse committed Aug 2, 2019
    Copy the full SHA
    5bdbfb1 View commit details

Commits on Aug 3, 2019

  1. Merge pull request #65793 from aanderse/solr

    solr: 7.7.1 -> 7.7.2, 8.1.1 -> 8.2.0
    srhb authored Aug 3, 2019
    Copy the full SHA
    af82b55 View commit details
Showing with 6 additions and 6 deletions.
  1. +3 −3 pkgs/servers/search/solr/8.x.nix
  2. +3 −3 pkgs/servers/search/solr/default.nix
6 changes: 3 additions & 3 deletions pkgs/servers/search/solr/8.x.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "solr";
version = "8.1.1";
version = "8.2.0";

src = fetchurl {
url = "mirror://apache/lucene/${pname}/${version}/${pname}-${version}.tgz";
sha256 = "18a6pgbvg6z38r3kqkhr152z7sa2hqip2g9fd26y4gzm2665j5dm";
sha256 = "0j9lydxlng785h2n1b8avinrkqdpbj5qn4rk897p2pbf4fdv795z";
};

nativeBuildInputs = [ makeWrapper ];
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
'';

meta = with stdenv.lib; {
homepage = https://lucene.apache.org/solr/;
homepage = "https://lucene.apache.org/solr/";
description = "Open source enterprise search platform from the Apache Lucene project";
license = licenses.asl20;
platforms = platforms.all;
6 changes: 3 additions & 3 deletions pkgs/servers/search/solr/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "solr";
version = "7.7.1";
version = "7.7.2";

src = fetchurl {
url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz";
sha256 = "1i189xhlxrpdqx2gx3r8s4dcd7nm74vjynwkrgv2hnq4mw95zf2g";
sha256 = "1pr02d4sw5arig1brjb6j7ir644n8s737qsx6ll46di5iw1y93pb";
};

nativeBuildInputs = [ makeWrapper ];
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
'';

meta = with stdenv.lib; {
homepage = https://lucene.apache.org/solr/;
homepage = "https://lucene.apache.org/solr/";
description = "Open source enterprise search platform from the Apache Lucene project";
license = licenses.asl20;
platforms = platforms.all;