Embed static/ and templates/
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Quentin 2022-07-19 15:08:51 +02:00
parent c395880165
commit b41630e941
Signed by: quentin
GPG Key ID: E9602264D639FF68
1 changed files with 22 additions and 4 deletions

View File

@ -11,9 +11,8 @@ let
})
];
};
in
pkgs.gomod.buildGoApplication {
pname = "bottin";
bin = pkgs.gomod.buildGoApplication {
pname = "bottin-bin";
version = "0.1.0";
src = ./.;
modules = ./gomod2nix.toml;
@ -26,5 +25,24 @@ in
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}
};
in
pkgs.stdenv.mkDerivation {
pname = "bottin";
version = "0.1.0";
src = ./.;
installPhase = ''
mkdir -p $out/
cat > guichet <<EOF
#!${pkgs.bash}/bin/bash
cd $out
${bin}/bin/guichet \$@
EOF
chmod +x guichet
cp guichet $out/guichet
cp -r templates static $out/
'';
}