Skip to content

Instantly share code, notes, and snippets.

@LnL7

LnL7/hello.nix Secret

Created August 13, 2018 23:40
Show Gist options
  • Save LnL7/c871605faf4275f86c12cfa7ad2861ad to your computer and use it in GitHub Desktop.
Save LnL7/c871605faf4275f86c12cfa7ad2861ad to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
gccStdenv.mkDerivation {
name = "hello";
src = /nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz;
buildCommand = ''
tar -xzf $src
cd hello-2.10
./configure --prefix=$out
make
make install
'';
system = builtins.currentSystem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment