Skip to content

Instantly share code, notes, and snippets.

@srhb
Created May 18, 2020 04:35
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "foo";
builder = builtins.toFile "builder.sh" ''
echo "foo" > $out
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment