1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-20 04:10:12 -04:00
nix-pills/pills/07/simple.txt

10 lines
208 B
Plaintext
Raw Normal View History

2017-08-13 05:56:53 -04:00
with (import <nixpkgs> {});
derivation {
name = "simple";
builder = "${bash}/bin/bash";
args = [ ./simple_builder.sh ];
inherit gcc coreutils;
src = ./simple.c;
system = builtins.currentSystem;
}