Skip to content

Instantly share code, notes, and snippets.

@dustinlacewell
Created December 13, 2018 02:41
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 dustinlacewell/21823aee20e0550fb22e27c5b6cc014b to your computer and use it in GitHub Desktop.
Save dustinlacewell/21823aee20e0550fb22e27c5b6cc014b to your computer and use it in GitHub Desktop.
frobtads shell.nix
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "frobtabs";
src = fetchFromGitHub {
owner = "realnc";
repo = "frobtads";
rev = "5850ed918c49873d1c11550d386c2f76e9f37fab";
sha256 = "11l2v184zldaijc89ch5yj29x463xrcwh97s7n68d13f7fbj2a7f";
foo = "Bar";
};
buildInputs = [ curl ];
nativeBuildInputs = [ autoreconfHook ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment