-*- mode: org -*- #+TITLE: configuration nix #+DESCRIPTION: makefile for spine #+FILETAGS: :sisu:build:tools: #+AUTHOR: Ralph Amissah #+EMAIL: [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]] #+COPYRIGHT: Copyright (C) 2015 - 2023 Ralph Amissah #+LANGUAGE: en #+STARTUP: content hideblocks hidestars noindent entitiespretty #+PROPERTY: header-args :exports code #+PROPERTY: header-args+ :noweb yes #+PROPERTY: header-args+ :results no #+PROPERTY: header-args+ :cache no #+PROPERTY: header-args+ :padline no #+PROPERTY: header-args+ :mkdirp yes #+OPTIONS: H:3 num:nil toc:t \n:t ::t |:t ^:nil -:t f:t *:t * nix :nix: #+NAME: nixpkgs_local #+BEGIN_SRC sh /srv/nix/nixpkgs #+END_SRC - default.nix - shell.nix ** flake :flake: *** flake **** flake.nix #+HEADER: :tangle ../flake.nix #+HEADER: :noweb yes #+BEGIN_SRC nix { description = "sisu parser & document generator"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # "github:nixos/nixpkgs"; "github:NixOS/nixpkgs/nixpkgs-unstable"; "nixpkgs/nixos-unstable"; "nixpkgs/nixos-21.11"; inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = { self, nixpkgs, flake-utils, } @ inputs: let pname = "sisu"; version = "<>"; shell = ./shell.nix; # ./default.nix; devEnv = ./shell.nix; # ./.envrc; # ./shell.nix; # ./default.nix; supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); # nixpkgs instantiated for supported system types checkPhase = '' runHook preCheck runHook postCheck ''; preInstall = ""; installPhase = '' runHook preInstall mkdir -p $out/lib mkdir -p $out/setup mkdir -p $out/data mkdir -p $out/bin cp -R ./lib/* $out/lib/. cp -R ./data/* $out/data/. cp -R ./setup/* $out/setup/. ln -s $out/setup/sisu_version.rb $out/version install -m755 ./bin/sisu $out/bin/sisu runHook postInstall ''; postInstall = ""; in { packages = forAllSystems (system: let pkgs = nixpkgsFor.${system}; in with pkgs; { default = stdenv.mkDerivation { inherit pname; inherit version; meta.mainProgram = "sisu"; executable = true; src = self; inherit shell; inherit devEnv; buildPhase = ""; inherit checkPhase; inherit installPhase; inherit postInstall; }; #vendorSha256 = "sha256-0Q00000000000000000000000000000000000000000="; }); apps = forAllSystems (system: { default = { type = "app"; program = "${self.packages.${system}.default}/bin/sisu"; }; }); devShells = forAllSystems (system: let pkgs = nixpkgsFor.${system}; shellHook = '' #${pkgs.nix}/bin/nix build ".#" --print-build-logs; nix build ".#" --print-build-logs; echo "" sisu -v ''; in with pkgs; { default = mkShell { name = "sisu dev base shell"; inherit shell; inherit devEnv; packages = [ <> sqlite jq git ]; inherit shellHook; }; dsh-epub = mkShell { name = "sisu dev shell for epub output"; inherit shell; inherit devEnv; packages = [ <> sqlite graphicsmagick zip unzip xz libxml2 html-tidy xmlstarlet epubcheck ebook_tools libxml2 html-tidy xmlstarlet epubcheck ebook_tools epr sigil calibre #(suite includes: ebook-viewer) foliate jq #git ]; inherit shellHook; }; dsh-html = mkShell { name = "sisu dev shell for html output"; inherit shell; inherit devEnv; packages = [ <> sqlite graphicsmagick zip unzip xz jq #git ]; inherit shellHook; }; dsh-latex-pdf = mkShell { name = "sisu dev shell for latex & pdf output"; inherit shell; inherit devEnv; packages = [ <> sqlite graphicsmagick zip unzip xz source-sans-pro source-serif-pro source-code-pro texlive.combined.scheme-full noto-fonts noto-fonts-cjk-sans takao jq #git ]; inherit shellHook; }; dsh-sqlite = mkShell { name = "sisu dev shell for sqlite3 output"; inherit shell; inherit devEnv; packages = [ <> sqlite graphicsmagick zip unzip xz jq #git ]; inherit shellHook; }; dsh-i18n = mkShell { name = "sisu dev shell internationalization, po4a"; inherit shell; inherit devEnv; packages = [ <> sqlite graphicsmagick perl538Packages.Po4a jq #git ]; inherit shellHook; }; #default = import ./shell.nix {inherit pkgs;}; }); }; } #+END_SRC ** shell.nix TODO #+HEADER: :tangle ../shell.nix #+HEADER: :shebang "#!/usr/bin/env -S nix-shell --impure\n#!nix-shell -i bash" #+HEADER: :tangle-mode (identity #o755) #+BEGIN_SRC nix {pkgs ? import {}}: with pkgs; mkShell { buildInputs = [ <> <> <> <> ]; shellHook = '' ''; } #+END_SRC { pkgs ? import {} }: with pkgs; mkShell { buildInputs = [ <> sqlite graphicsmagick unzip xz zip openssl #texlive-combined-full nixFlakes validatePkgConfig nix-output-monitor nix-tree jq git #starship ]; shellHook = '' ''; } #+END_SRC ** packages.nix *** default #+HEADER: :NO-tangle ../packages.nix #+BEGIN_SRC nix { pkgs ? import {} }: with pkgs; [ <> <> <> ] #+END_SRC *** ruby 3.2 #+HEADER: :tangle-NO ../nix/pkglst/packages_ruby_3_2.nix #+BEGIN_SRC nix { pkgs ? import {} }: with pkgs; [ <> <> <> ] #+END_SRC *** ruby 3.1 #+HEADER: :tangle-NO ../nix/pkglst/packages_ruby_3_1.nix #+BEGIN_SRC nix { pkgs ? import {} }: with pkgs; [ <> <> <> ] #+END_SRC *** ruby 3.0 #+HEADER: :tangle-NO ../nix/pkglst/packages_ruby_3_0.nix #+BEGIN_SRC nix { pkgs ? import {} }: with pkgs; [ <> <> <> ] #+END_SRC *** ruby legacy #+NAME: ruby_legacy #+BEGIN_SRC nix <> #+END_SRC *** ruby current #+NAME: ruby_current #+BEGIN_SRC nix <> #+END_SRC *** ruby next #+NAME: ruby_next #+BEGIN_SRC nix <> #+END_SRC *** ruby 3.3 - ruby_version_3_3 #+NAME: ruby_version_3_3 #+BEGIN_SRC nix ruby_3_3 rubyPackages_3_3.rake rubyPackages_3_3.sqlite3 rubyPackages_3_3.thor #+END_SRC *** ruby 3.2 - ruby_version_3_2 #+NAME: ruby_version_3_2 #+BEGIN_SRC nix ruby_3_2 rubyPackages_3_2.rake rubyPackages_3_2.sqlite3 rubyPackages_3_2.thor #+END_SRC *** ruby 3.1 - ruby_version_3_1 #+NAME: ruby_version_3_1 #+BEGIN_SRC nix ruby_3_1 rubyPackages_3_1.rake rubyPackages_3_1.sqlite3 rubyPackages_3_1.thor #+END_SRC *** ruby 3.0 - ruby_version_3_0 #+NAME: ruby_version_3_0 #+BEGIN_SRC nix ruby_3_0 rubyPackages_3_0.rake rubyPackages_3_0.sqlite3 rubyPackages_3_0.thor #+END_SRC *** nix related packages #+NAME: nix_packages #+BEGIN_SRC nix nix bundler bundix #+END_SRC *** project relevant packages #+NAME: packages_project_relevant #+BEGIN_SRC nix sqlite graphicsmagick unzip xz zip openssl #texlive-combined-full #+END_SRC *** project misc build packages #+NAME: packages_build #+BEGIN_SRC nix nixFlakes validatePkgConfig nix-output-monitor nix-tree jq git #+END_SRC #+NAME: packages_extra #+BEGIN_SRC nix #starship #+END_SRC ** variables ** sisu version SET VERSION :version:set:project: #+NAME: sisu_project_version #+BEGIN_SRC emacs-lisp <<./sisu_version_info_and_doc_header_including_copyright_and_license.org:sisu_project_version()>> #+END_SRC