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

Commits on Apr 5, 2019

  1. scalafmt: 1.5.1 -> 2.0.0-RC5 (#58991)

    AesaKamar authored and veprbl committed Apr 5, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    BurntSushi Andrew Gallant
    Copy the full SHA
    3c37dde View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/scalafmt/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/scalafmt/default.nix
Original file line number Diff line number Diff line change
@@ -2,18 +2,18 @@

let
baseName = "scalafmt";
version = "1.5.1";
version = "2.0.0-RC5";
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
buildCommand = ''
export COURSIER_CACHE=$(pwd)
${coursier}/bin/coursier fetch com.geirsson:scalafmt-cli_2.12:${version} > deps
${coursier}/bin/coursier fetch org.scalameta:scalafmt-cli_2.12:${version} > deps
mkdir -p $out/share/java
cp $(< deps) $out/share/java/
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = "15xfys9wdlx3rrqb2ab6qcfngkf6sa8v8q8shh10kk8jrc30g6dk";
outputHash = "0y2nja4dj3l7f7m9dxr8xwda8vv27dwj090gfsa78a20vq1d3xxw";
};
in
stdenv.mkDerivation rec {
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Opinionated code formatter for Scala";
homepage = http://scalafmt.org;
homepage = http://scalameta.org/scalafmt;
license = licenses.asl20;
maintainers = [ maintainers.markus1189 ];
};