guichet/default.nix

54 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2022-07-19 09:56:35 +00:00
let
pkgsSrc = fetchTarball {
# As of 2022-07-19
url = "https://github.com/NixOS/nixpkgs/archive/d2db10786f27619d5519b12b03fb10dc8ca95e59.tar.gz";
sha256 = "0s9gigs3ylnq5b94rfcmxvrmmr3kzhs497gksajf638d5bv7zcl5";
};
2022-07-24 08:07:41 +00:00
gomod2nix = fetchGit {
url = "https://github.com/tweag/gomod2nix.git";
ref = "master";
rev = "40d32f82fc60d66402eb0972e6e368aeab3faf58";
};
2022-07-19 09:56:35 +00:00
pkgs = import pkgsSrc {
overlays = [
(self: super: {
2022-07-24 08:07:41 +00:00
gomod = super.callPackage "${gomod2nix}/builder/" { };
2022-07-19 09:56:35 +00:00
})
];
};
2022-07-19 13:53:39 +00:00
in rec {
bin = pkgs.gomod.buildGoApplication {
pname = "guichet-bin";
2022-07-19 09:56:35 +00:00
version = "0.1.0";
src = ./.;
modules = ./gomod2nix.toml;
CGO_ENABLED=0;
meta = with pkgs.lib; {
description = "Interface web pour gérer le LDAP: changer son mot de passe, ses infos de profil, inviter des gens, administration";
homepage = "https://git.deuxfleurs.fr/Deuxfleurs/guichet";
2022-07-19 09:56:35 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
2022-07-19 13:08:51 +00:00
};
2022-07-19 13:53:39 +00:00
pkg = pkgs.stdenv.mkDerivation {
pname = "guichet";
2022-07-19 13:08:51 +00:00
version = "0.1.0";
src = ./.;
installPhase = ''
mkdir -p $out/
2022-07-19 13:53:39 +00:00
cp ${bin}/bin/guichet $out/guichet
2022-07-19 13:08:51 +00:00
cp -r templates static $out/
'';
2022-07-19 13:53:39 +00:00
};
2022-07-19 14:00:22 +00:00
docker = pkgs.dockerTools.buildImage {
name = "dxflrs/guichet";
config = {
Cmd = [ "${pkg}/guichet" ];
};
};
2022-07-19 13:53:39 +00:00
}