Advertisement
Guest User

Untitled

a guest
Jun 6th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.96 KB | None | 0 0
  1. (define-public linux-run
  2.   (package
  3.     (name "linux-run")
  4.     (version "1.0.0")
  5.     (source (origin
  6.               (method git-fetch)
  7.               (uri (git-reference
  8.                     (url "https://tildegit.org/solene/guix-linux-run")
  9.                     (commit version)))
  10.               (file-name (git-file-name name version))
  11.               (sha256
  12.                (base32
  13.                 "0prh4i68xw6r8vkzz3g7njfgsj32i1viw17rbrhds25dr64zi070"))))
  14.     (build-system copy-build-system)
  15.     (arguments
  16.      '(#:install-plan
  17.        '(("linux-run" "bin/"))))
  18.     (propagated-inputs
  19.      `(("gtk+" ,gtk+)
  20.        ("gcc-objc++:lib" ,gcc-objc++ "lib")))
  21.     (home-page "https://tildegit.org/solene/guix-linux-run")
  22.     (synopsis "Wrapper to run Linux binaries that are not from Guix")
  23.     (description "This package provides a shell wrapper that will redefine
  24. the environment to use Guix libraries for running a Linux binary.")
  25.     (license license:bsd-2)))
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement