aboutsummaryrefslogtreecommitdiff
path: root/tools/quip-app.nix
blob: 422b603be66a10e2ac8fa6b5346fd51fbefaa251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  stdenv,
  fetchFromGitHub,
  autoreconfHook,
  zlib,
}:
stdenv.mkDerivation rec {
  name = "quip";

  src = fetchFromGitHub {
    owner = "dcjones";
    repo = "quip";
    rev = "9165bb5ac17a2cf2822e437df573487d7adfa1cc";
    sha256 = "PpvgLzdiYcLyJ1JH9UzbUd29eKIlyY440HiJGYWvkrs=";
  };

  nativeBuildInputs = [autoreconfHook];
  buildInputs = [zlib];
}