home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

defsystem (429B)


      1 # -*- mode: snippet -*-
      2 # contributor: Mark Karpov
      3 # name: defsystem
      4 # key: defsystem
      5 # --
      6 (asdf:defsystem :${1:system}${2:
      7   :version      "${3:0.1.0}"}${4:
      8   :description  "${5:description}"}${6:
      9   :author       "${7:`user-full-name` <`user-mail-address`>}"}${8:
     10   :serial       t}${10:
     11   :license      "${11:GNU GPL, version 3}"}${12:
     12   :components   (${13:(:file "file.lisp")})}${14:
     13   :depends-on   (${15:#:alexandria})})
     14 $0