agendafs

A filesystem for your calendar.

git clone git://mccd.space/agendafs

shell.nix (268B)

      1 {
      2   pkgs ? import <nixpkgs> { },
      3 }:
      4 
      5 pkgs.mkShell {
      6   hardeningDisable = [ "all" ];
      7   nativeBuildInputs = with pkgs; [
      8     pkg-config
      9   ];
     10   packages = with pkgs; [
     11     clang-tools
     12     fuse3
     13     gdb
     14     pkg-config
     15     valgrind
     16     libuuid
     17     libical
     18     scdoc
     19   ];
     20 }