Add a basic 'hello-world' buildable with Nix
This commit is contained in:
parent
f3205e2df6
commit
63ff66b3d9
6 changed files with 115 additions and 0 deletions
13
default.nix
Normal file
13
default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
pkgs.buildGoModule rec {
|
||||
meta = {
|
||||
description = "Nidus Sync";
|
||||
homepage = "https://github.com/Gleipnir-Technology/nidus-sync";
|
||||
};
|
||||
pname = "nidus-sync";
|
||||
src = ./.;
|
||||
subPackages = [];
|
||||
version = "0.0.1";
|
||||
# Needs to be updated after every modification of go.mod/go.sum
|
||||
vendorHash = "sha256-3NQcLcPNfba20LXenLu/RcZistBzEGsRb75IogvSR68=";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue