]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add mastodon
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Mon, 24 Dec 2018 12:33:29 +0000 (13:33 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Mon, 24 Dec 2018 12:34:11 +0000 (13:34 +0100)
default.nix
fetched/mastodon.json [new file with mode: 0644]

index 61b5d25504d376414dec2c48e6e432ad0ca72bce..9f14e5a33ce47a347e190ce38fec8731f886e2ec 100644 (file)
@@ -257,6 +257,26 @@ let
   #     cp docs/nagnu.8 $out/share/man/man8
   #     '';
   # });
+
+  mastodon = stdenv.mkDerivation (fetchedGithub ./fetched/mastodon.json // rec {
+    buildPhase = ''
+      export GIT_SSL_CAINFO=/etc/ssl/certs/ca-certificates.crt
+      export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
+
+      bundle install --deployment --without development test
+      yarn install --pure-lockfile
+    '';
+    installPhase = ''
+      cp -a . $out
+    '';
+    propagatedBuildInputs = [
+      zlib icu libchardet git bundler yarn
+      protobuf protobufc libidn libpqxx nodejs
+      imagemagick ffmpeg libxml2 libxslt pkgconfig
+      autoconf bison libyaml readline ncurses libffi gdbm
+      jemalloc which postgresql python3
+    ];
+  });
 # https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh
 # https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks
 in
@@ -296,6 +316,7 @@ in
     inherit keybase;
     inherit bogofilter;
     inherit mtr;
+    #inherit mastodon;
     # todo: lx* ?, unrar, unzip, zeromq?
     #inherit nextcloud-client;
     #inherit nixos;
diff --git a/fetched/mastodon.json b/fetched/mastodon.json
new file mode 100644 (file)
index 0000000..11e59fa
--- /dev/null
@@ -0,0 +1,15 @@
+{
+  "tag": "v2.6.5",
+  "meta": {
+    "name": "mastodon",
+    "url": "https://github.com/tootsuite/mastodon",
+    "branch": "refs/tags/v2.6.5"
+  },
+  "github": {
+    "owner": "tootsuite",
+    "repo": "mastodon",
+    "rev": "887f9de6dc12ef405f92b94eeaa775df74ebb1ef",
+    "sha256": "0bszv3cnlqghwpkmh7qzak7wlanlp0dp5k4wxnl3acxzj72p53v5",
+    "fetchSubmodules": true
+  }
+}