Last active
May 4, 2018 19:25
-
-
Save corpix/9f4dace33fc8142cfed0202af984495b to your computer and use it in GitHub Desktop.
cointop nix derivation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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