first commit
This commit is contained in:
commit
6624edab68
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
result
|
43
README.md
Normal file
43
README.md
Normal file
@ -0,0 +1,43 @@
|
||||
# smithy-test
|
||||
Will be used to setup Smithy locally
|
||||
|
||||
try and try again
|
||||
|
||||
one more time
|
||||
|
||||
again!
|
||||
|
||||
yup
|
||||
|
||||
two
|
||||
|
||||
three
|
||||
|
||||
final
|
||||
|
||||
new encoders
|
||||
|
||||
once more
|
||||
|
||||
again
|
||||
|
||||
and again
|
||||
|
||||
Testing
|
||||
|
||||
test
|
||||
|
||||
App testing
|
||||
|
||||
Webhook testing
|
||||
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
||||
Webhook testing
|
2
builder.sh
Normal file
2
builder.sh
Normal file
@ -0,0 +1,2 @@
|
||||
"${coreutils}/bin/mkdir" $out
|
||||
"${gcc}/bin/gcc" -o $out/hello $src
|
9
default.nix
Normal file
9
default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
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;
|
||||
}
|
6
hello.c
Normal file
6
hello.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include<stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello World!");
|
||||
return 0;
|
||||
}
|
9
release.nix
Normal file
9
release.nix
Normal file
@ -0,0 +1,9 @@
|
||||
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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user