smithy-test-gitea/release.nix
2023-01-03 12:55:30 +05:30

13 lines
329 B
Nix

with (import <nixpkgs> {});
let
nt = import ./dep/nix-thunk {};
pvt = import (nt.thunkSource ./dep/smithy-test-private-gitea);
in derivation {
inherit gcc coreutils;
name = "myhello-0.0.1";
builder = "${bash}/bin/bash";
buildInputs = [ pvt ];
args = [ ./builder.sh ];
system = "x86_64-linux";
src = ./hello.c;
}