mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: renameat2: Move to (gnu packages linux).
Being Linux-specific, that's probably a better home. * gnu/packages/c.scm (renameat2): Move to... * gnu/packages/linux.scm (renameat2): ... here.
This commit is contained in:
parent
a463eeb623
commit
dc90c0807d
2 changed files with 35 additions and 35 deletions
|
@ -1375,41 +1375,6 @@ (define-public libdispatch
|
||||||
will take care of dispatching tasks to available cores.")
|
will take care of dispatching tasks to available cores.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public renameat2
|
|
||||||
;; This is a Gist, with no release or tags.
|
|
||||||
(let ((revision "0")
|
|
||||||
(commit "5c5193f20142511a5fc7069a539f4e5aba0ea470"))
|
|
||||||
(package
|
|
||||||
(name "renameat2")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "https://gist.githubusercontent.com/"
|
|
||||||
"eatnumber1/f97ac7dad7b1f5a9721f/raw/"
|
|
||||||
commit "/renameat2.c"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"07b4hsxqjm610sdkm4nxhp0gnl2s7gzlh4zdnja5ay40v4x24bb9"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:tests? #f ;no test suite
|
|
||||||
#:phases #~(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(replace 'build
|
|
||||||
(lambda _
|
|
||||||
(invoke #$(cc-for-target) "renameat2.c"
|
|
||||||
"-o" "renameat2")))
|
|
||||||
(replace 'install
|
|
||||||
(lambda _
|
|
||||||
(install-file "renameat2"
|
|
||||||
(string-append #$output "/bin")))))))
|
|
||||||
(home-page "https://gist.github.com/eatnumber1/f97ac7dad7b1f5a9721f")
|
|
||||||
(synopsis "Command to call the renameat2 Linux system call")
|
|
||||||
(description "This package provides a @command{renameat2} command that
|
|
||||||
calls the Linux-specific @code{renameat2} system call.")
|
|
||||||
(license license:expat))))
|
|
||||||
|
|
||||||
(define-public utf8-h
|
(define-public utf8-h
|
||||||
;; The latest tag is used as there is no release.
|
;; The latest tag is used as there is no release.
|
||||||
(let ((commit "500d4ea9f4c3449e5243c088d8af8700f7189734")
|
(let ((commit "500d4ea9f4c3449e5243c088d8af8700f7189734")
|
||||||
|
|
|
@ -9737,6 +9737,41 @@ (define-public rasdaemon
|
||||||
through standard log mechanisms like syslog.")
|
through standard log mechanisms like syslog.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public renameat2
|
||||||
|
;; This is a Gist, with no release or tags.
|
||||||
|
(let ((revision "0")
|
||||||
|
(commit "5c5193f20142511a5fc7069a539f4e5aba0ea470"))
|
||||||
|
(package
|
||||||
|
(name "renameat2")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://gist.githubusercontent.com/"
|
||||||
|
"eatnumber1/f97ac7dad7b1f5a9721f/raw/"
|
||||||
|
commit "/renameat2.c"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"07b4hsxqjm610sdkm4nxhp0gnl2s7gzlh4zdnja5ay40v4x24bb9"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;no test suite
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(replace 'build
|
||||||
|
(lambda _
|
||||||
|
(invoke #$(cc-for-target) "renameat2.c"
|
||||||
|
"-o" "renameat2")))
|
||||||
|
(replace 'install
|
||||||
|
(lambda _
|
||||||
|
(install-file "renameat2"
|
||||||
|
(string-append #$output "/bin")))))))
|
||||||
|
(home-page "https://gist.github.com/eatnumber1/f97ac7dad7b1f5a9721f")
|
||||||
|
(synopsis "Command to call the renameat2 Linux system call")
|
||||||
|
(description "This package provides a @command{renameat2} command that
|
||||||
|
calls the Linux-specific @code{renameat2} system call.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public libgpiod
|
(define-public libgpiod
|
||||||
(package
|
(package
|
||||||
(name "libgpiod")
|
(name "libgpiod")
|
||||||
|
|
Loading…
Reference in a new issue