tfcconnection/default.nix
2022-10-28 10:35:12 -05:00

36 lines
467 B
Nix

{
stdenv,
lib,
hugo,
go
}:
stdenv.mkDerivation rec {
name = "tfcconnection";
pname = "tfcconnection";
version = "0.0.1";
src = ./.;
buildInputs = [
hugo
go
];
buildPhase = ''
hugo
'';
installPhase = ''
'';
meta = with lib; {
name = "tfcconnection";
description = "TFC Connection Website";
homepage = "";
license = licenses.gpl3;
maintainers = [ "chriscochrun" ];
platforms = platforms.all;
};
}