this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 7f13d21e5156830a346c075866b7fcc0c74b735b 21 lines 356 B view raw
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})