Skip to content

Commit

Permalink
zstd: update to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
viric committed Feb 16, 2017
1 parent 0cee46d commit e62fe37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/compression/zstd/default.nix
Expand Up @@ -3,10 +3,10 @@

stdenv.mkDerivation rec {
name = "zstd-${version}";
version = "1.1.1";
version = "1.1.3";

src = fetchFromGitHub {
sha256 = "18snd1jiz0j6r1yk4vkgqmil2gbzwxgmcv2chvpnc5i93pp18hri";
sha256 = "1d46hs6pyq55izcmnk7hzvbl8iyxh7bp7qchc7rl8ay396ax2sd5";
rev = "v${version}";
repo = "zstd";
owner = "facebook";
Expand Down

4 comments on commit e62fe37

@teh
Copy link
Contributor

@teh teh commented on e62fe37 Feb 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, thanks for the updates! Can you follow the contributing guidelines for commits [1] when pushing directly to master? I'm running some stats tools that rely on the format :)

[1]
https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md#submitting-changes

@globin
Copy link
Member

@globin globin commented on e62fe37 Feb 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@teh are those tools open source? I'd like to run some stats for the release.

@teh
Copy link
Contributor

@teh teh commented on e62fe37 Feb 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@globin I just run a bunch of shell commands so we have stats for our next meetup (n new packages since last meetup). E.g.:

git log --oneline --since=2017-02-01  | egrep ".*: init"  | wc
git log --oneline --since=2017-02-01  | egrep ".*:.*->.*"  | wc

It's not perfect but pretty close to the actual numbers

@globin
Copy link
Member

@globin globin commented on e62fe37 Feb 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok that is similar to what I have, might want to add --no-merges. ;)

Please sign in to comment.