smithy-test-gitea/release.nix
Anurag Ohri e0b5f232f6
Some checks are pending
Added nested private dependency
2023-01-17 15:21:32 +05:30

13 lines
336 B
Nix

with (import <nixpkgs> {});
let
nt = import ./dep/nix-thunk {};
pvt = import (nt.thunkSource ./dep/smithy-test-gitea-private-nested);
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;
}