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

Commits on Jan 11, 2020

  1. joker: 0.12.9 -> 0.14.0

    r-ryantm authored and marsam committed Jan 11, 2020
    Copy the full SHA
    174190d View commit details
  2. Merge pull request #74397 from r-ryantm/auto-update/joker

    joker: 0.12.9 -> 0.14.0
    marsam authored Jan 11, 2020
    Copy the full SHA
    89e2c90 View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 pkgs/development/interpreters/joker/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.9";
version = "0.14.0";

src = fetchFromGitHub {
rev = "v${version}";
owner = "candid82";
repo = "joker";
sha256 = "19n2pzs045mflyzgq3cpa4w2fbd0f77j5k6c4yc3gk0mcwgdxhs2";
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";