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

Commits on Jan 2, 2021

  1. Copy the full SHA
    d848d42 View commit details
  2. Copy the full SHA
    5f2feb6 View commit details

Commits on Jan 5, 2021

  1. Merge pull request #108187 from thiagokokada/bump-clojure

    clojure: 1.10.1.727 -> 1.10.1.763
    timokau authored Jan 5, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9dd4dda View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/interpreters/clojure/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/interpreters/clojure/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "clojure";
version = "1.10.1.727";
version = "1.10.1.763";

src = fetchurl {
url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz";
sha256 = "1mnxvy4n7g72vcwhvrgr0xqri3p9d9w76c8a78kphhmd8lq0m92q";
sha256 = "042d5bk59wv145fvjrk72g4hvaq7j2p4a2d1pg13b433qfkchgia";
};

nativeBuildInputs = [
@@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
offers a software transactional memory system and reactive Agent
system that ensure clean, correct, multithreaded designs.
'';
maintainers = with maintainers; [ jlesquembre ];
maintainers = with maintainers; [ jlesquembre thiagokokada ];
platforms = platforms.unix;
};
}