Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 01423cbae4ef
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c16dd6d9ce56
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 11, 2020

  1. joker: 0.12.7 -> 0.14.0

    (cherry picked from commit 174190d)
    r-ryantm authored and marsam committed Jan 11, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c961094 View commit details
  2. wolfssl: 4.2.0 -> 4.3.0

    (cherry picked from commit 0d9600f)
    r-ryantm authored and marsam committed Jan 11, 2020
    Copy the full SHA
    c16dd6d View commit details
Showing with 8 additions and 4 deletions.
  1. +6 −2 pkgs/development/interpreters/joker/default.nix
  2. +2 −2 pkgs/development/libraries/wolfssl/default.nix
8 changes: 6 additions & 2 deletions pkgs/development/interpreters/joker/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,21 @@

buildGoModule rec {
pname = "joker";
version = "0.12.7";
version = "0.14.0";

src = fetchFromGitHub {
rev = "v${version}";
owner = "candid82";
repo = "joker";
sha256 = "0panmhrg1i158xbvqvq3s3217smbj7ynwlaiks18pmss36xx9dk4";
sha256 = "1b38alajxs89a9x3f3ldk1nlynp6j90qhl1m2c6561rsm41sqfz0";
};

modSha256 = "0i16vf7n1xfz5kp9w3fvyc9y9wgz4h396glgpdaznpxjr12rb43j";

preBuild = ''
go generate ./...
'';

meta = with stdenv.lib; {
homepage = https://github.com/candid82/joker;
description = "A small Clojure interpreter and linter written in Go";
4 changes: 2 additions & 2 deletions pkgs/development/libraries/wolfssl/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "wolfssl";
version = "4.2.0";
version = "4.3.0";

src = fetchFromGitHub {
owner = "wolfSSL";
repo = "wolfssl";
rev = "v${version}-stable";
sha256 = "16s7jx2brgii6jbpmr30ggkc7rrf388jl26g357sm7ggwliiwask";
sha256 = "1gd613k4qh9yhl0d8yh0flqn2cvm9qb5pp2p0khk31b1fh1p4vin";
};

configureFlags = [ "--enable-all" ];