about summary refs log tree commit diff
path: root/pkgs/tools/misc/woeusb-ng/default.nix
blob: 6f922afdf37a7d994d6cdf97cf6d1749ea8a1311 (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
{ lib, python3Packages, fetchFromGitHub, p7zip, parted, grub2 }:
with python3Packages;

buildPythonApplication rec {
  pname = "woeusb-ng";
  version = "0.2.10";

  propagatedBuildInputs = [ p7zip parted grub2 termcolor wxPython_4_0 six ];

  src = fetchFromGitHub {
    owner = "WoeUSB";
    repo = "WoeUSB-ng";
    rev = "v${version}";
    sha256 = "sha256-Nsdk3SMRzj1fqLrp5Na5V3rRDMcIReL8uDb8K2GQNWI=";
  };

  postInstall = ''
    # TODO: the gui requires additional polkit-actions to work correctly, therefore it is currently disabled
    rm $out/bin/woeusbgui
  '';

  # checks fail, because of polkit-actions and should be reenabled when the gui is fixed.
  doCheck = false;

  meta = with lib; {
    description = "A tool to create a Windows USB stick installer from a real Windows DVD or image";
    homepage = "https://github.com/WoeUSB/WoeUSB-ng";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ stunkymonkey ];
    platforms = platforms.linux;
  };
}