this repo has no description
1{
2 libressl,
3 stdenv,
4 fetchgit,
5 lib,
6 pkg-config,
7}:
8stdenv.mkDerivation (self: {
9 pname = "imbox";
10 version = "1.4";
11
12 src = fetchgit {
13 url = "https://git.causal.agency/imbox";
14 rev = self.version;
15 hash = "sha256-y5GCH3miimOWSCvS+Kh/nOpNrIEpcoc9p8jlQqYuh7Q=";
16 };
17
18 nativeBuildInputs = [ pkg-config ];
19
20 buildInputs = [ libressl ];
21})