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

Commits on May 7, 2018

  1. cfr: 0_125 -> 0.128

    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
    - ran ‘/nix/store/8hlizlz9d6cp6n3w3qx7s0wm2z3d3g8f-cfr-0.128/bin/cfr -h’ got 0 exit code
    - ran ‘/nix/store/8hlizlz9d6cp6n3w3qx7s0wm2z3d3g8f-cfr-0.128/bin/cfr --help’ got 0 exit code
    - ran ‘/nix/store/8hlizlz9d6cp6n3w3qx7s0wm2z3d3g8f-cfr-0.128/bin/cfr help’ got 0 exit code
    - found 0.128 with grep in /nix/store/8hlizlz9d6cp6n3w3qx7s0wm2z3d3g8f-cfr-0.128
    - directory tree listing: https://gist.github.com/3d40ccd7bfb3d81eb71e8a9033d1a127
    R. RyanTM committed May 7, 2018
    Copy the full SHA
    9fde82e View commit details
  2. Merge pull request #40125 from r-ryantm/auto-update/cfr

    cfr: 0_125 -> 0.128
    xeji authored May 7, 2018
    Copy the full SHA
    933b452 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_125";
version = "0.128";

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

buildInputs = [ makeWrapper ];