diff options
author | Samuel Fadel <samuel@nihil.ws> | 2022-12-01 15:03:05 +0100 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2022-12-01 15:03:05 +0100 |
commit | 7aa66702b2b9396add0cc20849ec89a48495c7ff (patch) | |
tree | 3d5bf019313264ff6527e5cfb464b060113b44aa /.manifest.scm |
Initial commit.
Sketching Scheme/C interop.
Diffstat (limited to '.manifest.scm')
-rw-r--r-- | .manifest.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.manifest.scm b/.manifest.scm new file mode 100644 index 0000000..ef6bbf7 --- /dev/null +++ b/.manifest.scm @@ -0,0 +1,22 @@ +(use-modules (guix build-system gnu) + (guix download) + (guix packages) + ((guix licenses) :prefix license:) + (gnu packages base) + (gnu packages commencement) + (gnu packages cpp) + (gnu packages guile) + (gnu packages pkg-config) + (gnu packages xorg)) + + +(packages->manifest + (list + gnu-make + gcc-toolchain + pkg-config + libxcb + xcb-util-keysyms + xcb-util-wm + ccls + )) |