diff options
-rw-r--r-- | etc/guix/home.scm | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index 760bb46..253b6c6 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -40,32 +40,6 @@ -(define tiniercc - (package - (inherit tcc) - (name "tiniercc") - (arguments - (substitute-keyword-arguments (package-arguments tcc) - ((#:tests? _ #f) #f) - ((#:configure-flags _) - #~(list - "--enable-static" - "--config-musl" - (string-append - "--crtprefix=" - #$(file-append musl "/lib")))) - ((#:phases phases) - #~(modify-phases #$phases - (add-after 'install 'ln-alias - (lambda _ - (symlink (string-append #$out "/bin/tcc") - (string-append #$out "/bin/cc")) - (symlink (string-append #$out "/bin/tcc") - (string-append #$out "/bin/c99")))))))) - (native-inputs - (modify-inputs (package-native-inputs tcc) - (append which))))) - (define yt-dlp-latest ((transformations:options->transformation '((with-latest . "yt-dlp"))) @@ -519,8 +493,7 @@ firefox)) (list yt-dlp-latest - pkg:mktorrent-latest - tiniercc) + pkg:mktorrent-latest) (list (script "cronjob" (slurp (string-append (getenv "HOME") |