Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Created May 14, 2017 23:36
Show Gist options
  • Save cleverca22/50ebae917d8d9a60a07d792d7829bc9f to your computer and use it in GitHub Desktop.
Save cleverca22/50ebae917d8d9a60a07d792d7829bc9f to your computer and use it in GitHub Desktop.
cmake example
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "fixme";
src = fetchurl {
url = "http://example.com/fixme.tar.gz";
sha256 = "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08";
};
buildInputs = [ cmake ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment