this repo has no description
1
fork

Configure Feed

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

at master 21 lines 360 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})