smithy-test-gitea/release.nix

13 lines
336 B
Nix
Raw Permalink Normal View History

2022-11-17 12:09:44 +00:00
with (import <nixpkgs> {});
2023-01-03 07:25:30 +00:00
let
nt = import ./dep/nix-thunk {};
2023-01-17 09:51:32 +00:00
pvt = import (nt.thunkSource ./dep/smithy-test-gitea-private-nested);
2023-01-03 07:25:30 +00:00
in derivation {
2022-11-17 12:09:44 +00:00
inherit gcc coreutils;
name = "myhello-0.0.1";
builder = "${bash}/bin/bash";
2023-01-03 07:25:30 +00:00
buildInputs = [ pvt ];
2022-11-17 12:09:44 +00:00
args = [ ./builder.sh ];
system = "x86_64-linux";
src = ./hello.c;
}