diff options
author | Samuel Fadel <samuel@nihil.ws> | 2022-12-20 16:10:21 +0100 |
---|---|---|
committer | Samuel Fadel <samuel@nihil.ws> | 2022-12-20 16:10:21 +0100 |
commit | c254630c634124b8a661f45837eb83a7480c9eb4 (patch) | |
tree | cfe32de6a5f7c53770a39afb108feedac5287698 /manifest.scm | |
parent | d24392445de3816fd364381bf40b76b70d0843cf (diff) |
Rename manifest file into manifest.scm
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000..a66134e --- /dev/null +++ b/manifest.scm @@ -0,0 +1,26 @@ +(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 valgrind) + (gnu packages xorg)) + + +(packages->manifest + (list + gnu-make + gcc-toolchain + (list gcc-toolchain "debug") + pkg-config + libx11 + libxcb + xcb-util-keysyms + xcb-util-wm + ccls + valgrind + )) |