blob: 72a73cf7140559f7c0ddb22f557ff623c9bf8a55 (
plain) (
blame)
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
|
(define-module (woeusb-ng)
#:use-module (gnu packages python)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages wxwidgets)
#:use-module (guix build-system python)
#:use-module (guix build-system pyproject)
#:use-module (guix build utils)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix licenses)
)
(define-public woeusb-ng
(package
(name "woeusb-ng")
(version "0.2.12")
(source
(origin
(method url-fetch)
(uri (pypi-uri "WoeUSB-ng" version))
(sha256
(base32 "18j6bshvxmbalhjlpwgw3400nghdfqgk4k232j695x1lp3l1lxkm"))))
(build-system pyproject-build-system)
(arguments
'(
#:phases
(modify-phases %standard-phases
(delete 'check)
(add-before 'build 'fix-installer
(lambda _
(substitute* "setup.py" ( (" post_install()") " #post_install()" ))))
)))
(propagated-inputs (list python-termcolor python-wxpython))
(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 gpl3)))
|