]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/commitdiff
Add fiche module (a program to submit paste from command line)
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 11 Apr 2020 15:25:48 +0000 (17:25 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Fri, 24 Apr 2020 22:04:56 +0000 (00:04 +0200)
modules/default.nix
modules/webapps/fiche.nix [new file with mode: 0644]
pkgs/default.nix
pkgs/fiche/default.nix [new file with mode: 0644]
pkgs/fiche/fiche.json [new file with mode: 0644]

index 9ff6ea62a2096f4f7f0b02439407d7911ad25a59..a503f9228de50ffee05470bf67e8b55f44959b3a 100644 (file)
@@ -9,6 +9,7 @@
   mastodon = ./webapps/mastodon.nix;
   mediagoblin = ./webapps/mediagoblin.nix;
   peertube = ./webapps/peertube.nix;
+  fiche = ./webapps/fiche.nix;
 
   opendmarc = ./opendmarc.nix;
   openarc = ./openarc.nix;
diff --git a/modules/webapps/fiche.nix b/modules/webapps/fiche.nix
new file mode 100644 (file)
index 0000000..9061b2e
--- /dev/null
@@ -0,0 +1,53 @@
+{ lib, pkgs, config, ... }:
+let
+  cfg = config.services.fiche;
+in
+{
+  options.services.fiche = {
+    enable = lib.mkEnableOption "Enable fiche’s service";
+    port = lib.mkOption {
+      type = lib.types.port;
+      description = "Port to listen to";
+    };
+    domain = lib.mkOption {
+      type = lib.types.str;
+      description = "Domain";
+    };
+    dataDir = lib.mkOption {
+      type = lib.types.path;
+      default = "/var/lib/fiche";
+      description = "Directory where to place the pastes";
+    };
+    https = lib.mkEnableOption "Use https";
+  };
+
+  config = lib.mkIf cfg.enable {
+    networking.firewall.allowedTCPPorts = [ cfg.port ];
+
+
+    system.activationScripts.fiche = ''
+      mkdir -p /var/lib/fiche
+    '';
+    systemd.services.fiche = {
+      description = "Fiche server";
+      wantedBy = [ "multi-user.target" ];
+      after = [ "network.target" ];
+
+      script = ''
+        exec ${pkgs.fiche}/bin/fiche -o ${cfg.dataDir} -d ${cfg.domain} ${lib.optionalString cfg.https "-S "} -p ${builtins.toString cfg.port}
+      '';
+
+      serviceConfig = {
+        ExecStartPre = [
+          "+${pkgs.coreutils}/bin/install -m 0755 -o fiche -d /var/lib/fiche"
+        ];
+        DynamicUser = true;
+        User = "fiche";
+        PrivateTmp = true;
+        Restart = "always";
+        WorkingDirectory = cfg.dataDir;
+        ReadWritePaths = cfg.dataDir;
+      };
+    };
+  };
+}
index a6630feb465b33c747b11ca399fffa6f57111264..b02c63ec2c7d3e0837ad873f4a5044125bd40a0b 100644 (file)
@@ -75,4 +75,6 @@ rec {
   }) {}).monero;
 
   niv = (import sources.niv {}).niv;
+
+  fiche = callPackage ./fiche { inherit mylibs; };
 }
diff --git a/pkgs/fiche/default.nix b/pkgs/fiche/default.nix
new file mode 100644 (file)
index 0000000..cc67fb0
--- /dev/null
@@ -0,0 +1,7 @@
+{ stdenv, mylibs }:
+stdenv.mkDerivation (mylibs.fetchedGithub ./fiche.json // rec {
+  installPhase = ''
+    mkdir -p $out/bin
+    install -m 0755 fiche $out/bin/
+  '';
+})
diff --git a/pkgs/fiche/fiche.json b/pkgs/fiche/fiche.json
new file mode 100644 (file)
index 0000000..036de7f
--- /dev/null
@@ -0,0 +1,15 @@
+{
+  "tag": "4bba916-master",
+  "meta": {
+    "name": "fiche",
+    "url": "https://github.com/solusipse/fiche",
+    "branch": "master"
+  },
+  "github": {
+    "owner": "solusipse",
+    "repo": "fiche",
+    "rev": "4bba916e0f4a54d98a3947df7e2d0714d92a8bab",
+    "sha256": "060pxn8ns2zqszv1dlf7zcaf42avn9svya6irwy5d1ry29hp2ds9",
+    "fetchSubmodules": true
+  }
+}