blob: 2f7fa2c0a5b06c3e7b6b5f9d45dba4f0320b7ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
(define-module (crn packages python-xyz))
(use-modules (crn packages)
(guix git)
(guix git-download)
(guix gexp)
(guix download)
(guix packages)
(guix licenses)
(guix build-system pyproject)
(guix utils)
(gnu packages bootloaders)
(gnu packages compression)
(gnu packages disk)
(gnu packages linux)
(gnu packages python-build)
(gnu packages python-xyz)
(gnu packages wxwidgets))
(define-public python-woeusb-ng
(package
(name "python-woeusb-ng")
(version "0.2.12-20260125")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/WoeUSB/WoeUSB-ng")
(commit "cc52ffc")))
(file-name (git-file-name name version))
(sha256
(base32 "0qabby0cfdjn55ipkvz7i9shcwpcll5wbnzq0ff5mdnqrjmxgyjd"))
(patches (crn/search-patches "woeusb-include-gui.patch"
"woeusb-ntfs.patch"))))
(build-system pyproject-build-system)
(inputs (list ))
(propagated-inputs (list python-termcolor python-wxpython parted 7zip ntfs-3g grub-pc))
(native-inputs (list python-setuptools))
(arguments
`(#:phases (modify-phases %standard-phases
(delete 'sanity-check)
(delete 'check))))
(home-page "https://github.com/WoeUSB/WoeUSB-ng")
(synopsis
"WoeUSB-ng is a simple tool that enable you to create your own usb stick windows installer from an iso image or a real DVD. This is a rewrite of original WoeUSB.")
(description
"@code{WoeUSB-ng} is a simple tool that enable you to create your own usb stick
windows installer from an iso image or a real DVD. This is a rewrite of original
@code{WoeUSB}.")
(license #f)))
|