Skip to content

Instantly share code, notes, and snippets.

@LnL7
Last active December 15, 2016 09:35
Show Gist options
  • Save LnL7/4149237a98b9040f57670b847a857ca8 to your computer and use it in GitHub Desktop.
Save LnL7/4149237a98b9040f57670b847a857ca8 to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {} }:
let
inherit (pkgs) stdenvNoCC;
in
stdenvNoCC.mkDerivation {
name = "foo";
unpackPhase = ":";
installPhase = ''
mkdir -p $out/bin
cp ${./setup.sh} $out/bin/run-setup
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment