nix-config/overlays/telme10.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
394 B
Nix
Raw Normal View History

2022-12-11 02:07:56 +01:00
{ 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
'';
}