31 lines
739 B
Nix
31 lines
739 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }:
|
||
|
flake-utils.lib.eachDefaultSystem(system:
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
inherit (pkgs) lib;
|
||
|
in
|
||
|
{
|
||
|
packages.default = pkgs.stdenv.mkDerivation rec {
|
||
|
name = "ash-stories";
|
||
|
src = ./.;
|
||
|
phases = "installPhase";
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/src
|
||
|
mkdir -p $out/stories
|
||
|
cp $src/stories/* $out/stories/
|
||
|
cp $src/src/*.js $out/src/
|
||
|
cp $src/src/*.css $out/src/
|
||
|
'';
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|