summary refs log tree commit diff
path: root/pkgs/servers/mastodon/update.nix
blob: d7423b3e66c842e1359070a74e960ccf8cd7436c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, stdenv, lib, makeWrapper, yarn2nix, bundix, coreutils,
  diffutils, nix-prefetch-github, gnused, jq }:
stdenv.mkDerivation rec {
  name = "mastodon-update-script";
  installPhase = ''
    mkdir -p $out/bin
    cp ${./update.sh} $out/bin/update.sh
    patchShebangs $out/bin/update.sh
    wrapProgram $out/bin/update.sh --prefix PATH : ${lib.makeBinPath buildInputs}
  '';

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ yarn2nix bundix coreutils diffutils nix-prefetch-github gnused jq ];

  meta = {
    maintainers = with lib.maintainers; [ happy-river ];
    description = "Utility to generate Nix expressions for Mastodon's dependencies";
    platforms = lib.platforms.unix;
  };
}