Last active
August 14, 2018 18:26
-
-
Save domenkozar/766c926b6a4427d3828a0ca9600ca6cb to your computer and use it in GitHub Desktop.
This file contains 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 { | |
name = "foo"; | |
src = builtins.path { | |
name = "foo"; | |
path = ./.; | |
}; | |
buildPhase = ":"; | |
installPhase = "mkdir -p $out/bin && touch $out/bin/foo"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment