From: Ismaƫl Bouya Date: Mon, 24 Dec 2018 12:33:29 +0000 (+0100) Subject: Add mastodon X-Git-Tag: nur_publish~404 X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=commitdiff_plain;h=3fe04d3890bcdbdd52522f2bd63fb00eece6994b Add mastodon --- diff --git a/default.nix b/default.nix index 61b5d25..9f14e5a 100644 --- a/default.nix +++ b/default.nix @@ -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 index 0000000..11e59fa --- /dev/null +++ b/fetched/mastodon.json @@ -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 + } +}