Skip to content

Instantly share code, notes, and snippets.

@dxtr

dxtr/default.nix Secret

Created May 10, 2020 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dxtr/70ca4f6e2433f85a215141a5d9ff04d1 to your computer and use it in GitHub Desktop.
Save dxtr/70ca4f6e2433f85a215141a5d9ff04d1 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
buildGoModule rec {
pname = "goidentd";
src = fetchFromGithub {
owner = "dxtr";
repo = "goidentd";
rev = "0b47508694bac09042abe2866432d1af6a9f1c3c";
sha256 = "00000000000000000000000";
};
modSha256 = "0000000";
meta = with lib; {
description = "A simple identd server that responds with a random hexadecimal string";
homepage = "https://dxtr.github.io/";
license = licenses.isc;
maintainers = with maintainers; [ dxtr ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment