mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add fatresize.
* gnu/packages/disk.scm (fatresize): New variable. Change-Id: Iebe5d4df7e3c8b4d41f72d5774577672c9c6ba9b Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
b85db5febc
commit
b64d3168af
1 changed files with 24 additions and 0 deletions
|
@ -594,6 +594,30 @@ which respectively make and check MS-DOS FAT file systems.")
|
||||||
and a @command{fsck.vfat} compatibility symlink for use in an initrd.")
|
and a @command{fsck.vfat} compatibility symlink for use in an initrd.")
|
||||||
(license (package-license dosfstools))))
|
(license (package-license dosfstools))))
|
||||||
|
|
||||||
|
(define-public fatresize
|
||||||
|
(package
|
||||||
|
(name "fatresize")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ya-mouse/fatresize")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vhz84kxfyl0q7mkqn68nvzzly0a4xgzv76m6db0bk7xyczv1qr2"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(inputs
|
||||||
|
(list parted))
|
||||||
|
(home-page "https://github.com/ya-mouse/fatresize")
|
||||||
|
(synopsis "Resize FAT partitions")
|
||||||
|
(description
|
||||||
|
"This package provides a tool to resize FAT partitions using libparted.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public hdparm
|
(define-public hdparm
|
||||||
(package
|
(package
|
||||||
(name "hdparm")
|
(name "hdparm")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue