Skip to content

Instantly share code, notes, and snippets.

@corpix
Last active May 4, 2018 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corpix/9f4dace33fc8142cfed0202af984495b to your computer and use it in GitHub Desktop.
Save corpix/9f4dace33fc8142cfed0202af984495b to your computer and use it in GitHub Desktop.
cointop nix derivation
with import <nixpkgs>{};
{ pkgs ? import <nixpkgs> {} }:
buildGo19Package rec {
name = "cointop-unstable-${version}";
version = "development";
src = fetchFromGitHub {
owner = "miguelmota";
repo = "cointop";
rev = "9bc7d61f02677486925fc856be438d73b12c0aad";
sha256 = "165isgvrkdlwvbl7himi08a79p21z258pwz9zih23gfljs8i9h5i";
};
goPackagePath = "github.com/miguelmota/cointop";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment