smithy-test-gitea-no-dep/release.nix

9 lines
198 B
Nix
Raw Normal View History

2023-01-12 12:09:20 +00:00
with (import <nixpkgs> {});
derivation {
inherit gcc coreutils;
name = "myhello-0.0.1";
builder = "${bash}/bin/bash";
args = [ ./builder.sh ];
system = "x86_64-linux";
src = ./hello.c;
}