Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Forked from monokrome/default.nix
Last active June 5, 2018 05:51
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 cleverca22/c9efc13830017160eda123e122d4514a to your computer and use it in GitHub Desktop.
Save cleverca22/c9efc13830017160eda123e122d4514a to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
{
yourthing = pkgs.callPackage ./yourthing.nix {};
}
{ stdenv, godot, godot_headers }:
stdenv.mkDerivation {
name = "yourthing";
buildInputs = [
godot
godot_headers
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment