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

Commits on Mar 2, 2019

  1. leiningen: 2.9.0 -> 2.9.1

    (cherry picked from commit 025c2ab)
    bendlas committed Mar 2, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    prusnak Pavol Rusnak
    Copy the full SHA
    004d142 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/build-managers/leiningen/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/build-managers/leiningen/default.nix
Original file line number Diff line number Diff line change
@@ -3,18 +3,18 @@

stdenv.mkDerivation rec {
pname = "leiningen";
version = "2.9.0";
version = "2.9.1";
name = "${pname}-${version}";

src = fetchurl {
url = "https://raw.github.com/technomancy/leiningen/${version}/bin/lein-pkg";
sha256 = "18wwcc956w1ii6zf8zjndgvmc614s18nxz3dary2iigbfq4y0asc";
sha256 = "1h0gpzpr7xk6hvmrrq41bcp2k9aai348baf8ad9bxvci01n4zb12";
};

jarsrc = fetchurl {
# NOTE: This is actually a .jar, Github has issues
url = "https://github.com/technomancy/leiningen/releases/download/${version}/${name}-standalone.zip";
sha256 = "07pw852w57w3lj3fddlxfzjsln90q52dwxvxpz9qbprw8p2xfrim";
sha256 = "1y2mva5s2w2szzn1b9rhz0dvkffls4ravii677ybcf2w9wd86z7a";
};

JARNAME = "${name}-standalone.jar";