forked from marko/svitak
22 lines
978 B
Scheme
22 lines
978 B
Scheme
(use-modules (guix profiles)
|
|
(guix search-paths)
|
|
(gnu packages)
|
|
(gnu packages base))
|
|
|
|
(let ((specs '("ghc" "cabal-install" "pkg-config" "coreutils" "bash" "grep" "sed"
|
|
"gobject-introspection" "gcc-toolchain" "make" "glibc-locales"
|
|
"gtk" "webkitgtk" "libadwaita" "libsoup" "glib" "glib-networking"
|
|
"cairo" "pango" "at-spi2-core" "gdk-pixbuf" "harfbuzz" "fribidi"
|
|
"libepoxy" "graphene" "mesa" "wayland" "wayland-protocols"
|
|
"libx11" "libxkbcommon" "coreutils" "bash")))
|
|
(manifest
|
|
(append
|
|
(manifest-entries (specifications->manifest specs))
|
|
(list (manifest-entry
|
|
(name "ld-library-path-automation")
|
|
(version "0")
|
|
(item (specification->package "bash"))
|
|
(search-paths
|
|
(list (search-path-specification
|
|
(variable "LD_LIBRARY_PATH")
|
|
(files '("lib"))))))))))
|