diff options
author | EuAndreh <eu@euandre.org> | 2022-10-17 19:06:31 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-17 19:06:33 -0300 |
commit | 5f0fb9f446da11b07e596fa7b4ddb40ba10b3fb7 (patch) | |
tree | 108e8cbe4d7376bf51ae5eb156af37550775b572 /src/xyz/euandreh/posix.scm | |
parent | src/xyz/euandreh/pending.scm: Remove (diff) | |
download | package-repository-5f0fb9f446da11b07e596fa7b4ddb40ba10b3fb7.tar.gz package-repository-5f0fb9f446da11b07e596fa7b4ddb40ba10b3fb7.tar.xz |
src/xyz/euandreh/posix.scm: Remove
Remove c99 binary alias.
Diffstat (limited to 'src/xyz/euandreh/posix.scm')
-rw-r--r-- | src/xyz/euandreh/posix.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/xyz/euandreh/posix.scm b/src/xyz/euandreh/posix.scm deleted file mode 100644 index 5cd8cf3..0000000 --- a/src/xyz/euandreh/posix.scm +++ /dev/null @@ -1,25 +0,0 @@ -(define-module (xyz euandreh posix) - #:use-module (guix packages) - #:use-module (guix utils) - #:use-module (gnu packages c)) - -(define-public tcc-c99 - (package - (inherit tcc) - (name "posix-c99") - (arguments - `(,@(ensure-keyword-arguments - (package-arguments tcc) - `(#:parallel-build? #f - #:parallel-tests? #f - #:phases - (modify-phases %standard-phases - (add-after 'install 'ln-alias - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (symlink (string-append out "/bin/tcc") - (string-append out "/bin/c99")))))))))))) - -(list - #; - tcc-c99) |