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: 01423cbae4ef
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c961094d9142
Choose a head ref
  • 1 commit
  • 1 file 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
    Copy the full SHA
    c961094 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.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";