From 3fe04d3890bcdbdd52522f2bd63fb00eece6994b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Mon, 24 Dec 2018 13:33:29 +0100 Subject: [PATCH] Add mastodon --- default.nix | 21 +++++++++++++++++++++ fetched/mastodon.json | 15 +++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 fetched/mastodon.json 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 + } +} -- 2.41.0