blob: 5b380f18e5dffead2cd3a2cd5717958b46a5ad25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
stdenv,
fetchFromGitHub,
autoreconfHook,
zlib,
}:
stdenv.mkDerivation rec {
name = "quip";
src = fetchFromGitHub {
owner = "dcjones";
repo = "quip";
rev = "9165bb5ac17a2cf2822e437df573487d7adfa1cc";
sha256 = "PpvgLzdiYcLyJ1JH9UzbUd29eKIlyY440HiJGYWvkrs=";
};
nativeBuildInputs = [autoreconfHook];
buildInputs = [zlib];
patches = [ ./quip.patch ];
}
|