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

Commits on Jun 24, 2018

  1. cfr: 0.128 -> 0.130 (#42528)

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/cfr/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/qfb3yaadxcg1jgkb1fqacki5sfkpkgil-cfr-0.130/bin/cfr passed the binary check.
    - 1 of 1 passed binary check by having a zero exit code.
    - 0 of 1 passed binary check by having the new version present in output.
    - found 0.130 with grep in /nix/store/qfb3yaadxcg1jgkb1fqacki5sfkpkgil-cfr-0.130
    - directory tree listing: https://gist.github.com/99807c8d52305df534377a48b6961987
    - du listing: https://gist.github.com/b8349cb82a3ec2d338d78686d712e87f
    r-ryantm authored and xeji committed Jun 24, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    picnoir Félix
    Copy the full SHA
    f02ff11 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/java/cfr/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/java/cfr/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "cfr-${version}";
version = "0.128";
version = "0.130";

src = fetchurl {
url = "http://www.benf.org/other/cfr/cfr_${version}.jar";
sha256 = "09mx1f6d1p57q5r05nvgm1xrhqv34n7v7rwq875whb441h1dnsix";
sha256 = "0zy63jxl05f0wm9s344y846hzqn0zk34w6qpbf48a98si5ciwsmn";
};

buildInputs = [ makeWrapper ];