Created
November 9, 2017 18:43
-
-
Save dustinlacewell-wk/f7d6da5b8138f3d7d88a5d0d3ab4d657 to your computer and use it in GitHub Desktop.
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> {}; | |
stdenv.mkDerivation rec { | |
name = "harbour-cli"; | |
buildInputs = [ go glide ]; | |
src = ./.; | |
buildPhase = '' | |
source $stdenv/setup | |
echo "what up" | |
''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment