diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-01 02:00:09 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-01 02:00:19 +0200 |
commit | cb75465645d332e885f0aee503e3a45a837ddc93 (patch) | |
tree | cb650376696898c03d564f9da5cf63fb29286e2d /gnu | |
parent | 4e3d04a33bc7fcb41d3b4cdffdc4cb13ce0cc18e (diff) | |
download | guix-cb75465645d332e885f0aee503e3a45a837ddc93.tar.gz |
gnu: gptfdisk: Correct gettext input type.
* gnu/packages/disk.scm (gptfdisk)[inputs]: Move gettext-minimal from here… [native-inputs]: …to here.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/disk.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 81f41cda3f..cedca90d22 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -399,9 +399,10 @@ output without any plausibility checks.") (install-file "fixparts.8" man) (install-file "gdisk.8" man) (install-file "sgdisk.8" man))))))) + (native-inputs + (list gettext-minimal)) (inputs - (list gettext-minimal - ncurses + (list ncurses popt `(,util-linux "lib"))) ;libuuid (home-page "https://www.rodsbooks.com/gdisk/") |