Skip to content

Instantly share code, notes, and snippets.

@LnL7

LnL7/foo.nix Secret

Created June 13, 2018 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LnL7/aacbb5abcded505b27add0a3421197e9 to your computer and use it in GitHub Desktop.
Save LnL7/aacbb5abcded505b27add0a3421197e9 to your computer and use it in GitHub Desktop.
{ stdenv, autoreconfHook }:
stdenv.mkDerivation {
name = "c-project";
nativeBuildInputs = [ autoreconfHook ];
}
#!/usr/bin/env bash
nix-shell -E 'with import <nixpkgs> {}; callPackage ./foo.nix {}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment