nix-config/overlays/telme10.nix

22 lines
394 B
Nix

{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "telmet10";
version = "unstable";
src = fetchFromGitHub {
owner = "c3d2";
repo = "telmet10";
rev = "5962266909bada6993a500ecce8707ec486d4cc0";
sha256 = "";
};
postInstall = ''
install -t $out/etc/systemd/system telme10.service
install -t $out/etc/systemd/system telme10.socket
'';
}