aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix/shell/shell_spine.nix
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2021-05-15 18:10:04 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2021-05-15 22:25:58 -0400
commit924fabf26347cf2da0a770cd16f956c26e4064f9 (patch)
tree80c97145dca8188df5f7131694e5dc2f5990b7ff /nix/shell/shell_spine.nix
parentcgi.d arsd update (diff)
nix-build cleanup, external sources localized
- clean up as external sources kept locally, in ./src/ext_depends/ - remove dub2nix dependency, no longer needed/used
Diffstat (limited to 'nix/shell/shell_spine.nix')
-rwxr-xr-xnix/shell/shell_spine.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nix/shell/shell_spine.nix b/nix/shell/shell_spine.nix
deleted file mode 100755
index 766f6ee..0000000
--- a/nix/shell/shell_spine.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ pkgs ? import <nixpkgs> {} }:
-pkgs.mkShell {
- buildInputs = with pkgs; [
- (import ../pkglst/shell-pkgs.nix { inherit pkgs; })
- ];
- buildPhase = "nix build -f default.nix";
- shellHook = ''
- if [[ -e ".envrc" ]]; then
- source .envrc
- fi
- nix-build
- RUN="./result/bin/spine --very-verbose --theme-light --html --epub --sqlite-discrete --output=/tmp/www ./data/pod/sisu-spine-markup"
- $RUN
- echo "built spine ... @ ./result/bin/spine"
- echo "& (tested with) run:"
- echo " $RUN"
- '';
-}