unified nix build
This commit is contained in:
parent
4d837da7a7
commit
80cd181f0a
|
@ -9,12 +9,10 @@ let
|
||||||
src = builtins.filterSource
|
src = builtins.filterSource
|
||||||
(path: type: type != "directory" || builtins.baseNameOf path != "target")
|
(path: type: type != "directory" || builtins.baseNameOf path != "target")
|
||||||
./.;
|
./.;
|
||||||
in {
|
in naersk.buildPackage {
|
||||||
backend = naersk.buildPackage {
|
name = "mi_backend";
|
||||||
name = "mi_backend";
|
inherit src;
|
||||||
inherit src;
|
buildInputs = with pkgs; [ openssl pkg-config sqlite libsodium ];
|
||||||
buildInputs = with pkgs; [ openssl pkg-config sqlite libsodium ];
|
SODIUM_USE_PKG_CONFIG = "1";
|
||||||
SODIUM_USE_PKG_CONFIG = "1";
|
SODIUM_SHARED = "1";
|
||||||
SODIUM_SHARED = "1";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
{ sources ? import ./nix/sources.nix, pkgs ? import sources.nixpkgs { } }:
|
||||||
|
with pkgs;
|
||||||
|
let
|
||||||
|
backend = pkgs.callPackage ./backend { inherit sources pkgs; };
|
||||||
|
frontend = pkgs.callPackage ./frontend { inherit sources pkgs; };
|
||||||
|
gruvbox = pkgs.callPackage sources.gruvbox-css { };
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
pname = "mi";
|
||||||
|
version = "${backend.version}";
|
||||||
|
phases = "installPhase";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
# service binary
|
||||||
|
mkdir -p $out/bin
|
||||||
|
|
||||||
|
for file in ${backend}/bin/*; do
|
||||||
|
ln -s ${backend}/bin/$(${coreutils}/bin/basename $file) $out/bin/$(${coreutils}/bin/basename $file)
|
||||||
|
done
|
||||||
|
|
||||||
|
# frontend JS
|
||||||
|
mkdir -p $out/public/js
|
||||||
|
ln -s ${frontend}/Main.js $out/public/js/Main.js
|
||||||
|
|
||||||
|
# static files
|
||||||
|
cp -vrf ${./static}/* $out/public
|
||||||
|
|
||||||
|
mkdir -p $out/public/css
|
||||||
|
ln -s ${gruvbox}/gruvbox.css $out/public/css/gruvbox.css
|
||||||
|
|
||||||
|
# migrations
|
||||||
|
ln -s ${./backend/migrations} $out/migrations
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in New Issue