Skip to content

Commit

Permalink
heimdall: fix the GUI front-end's run-time errors
Browse files Browse the repository at this point in the history
  • Loading branch information
peti committed Sep 5, 2019
1 parent 4f49311 commit 52de09c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/tools/misc/heimdall/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{ stdenv, fetchFromGitHub, cmake
, zlib, libusb1
, enableGUI ? false, qtbase ? null }:
{ stdenv, mkDerivation, fetchFromGitHub, cmake, zlib, libusb1
, enableGUI ? false, qtbase ? null
}:

stdenv.mkDerivation rec {
let version = "1.4.2"; in

mkDerivation {
name = "heimdall-${if enableGUI then "gui-" else ""}${version}";
version = "1.4.2";

src = fetchFromGitHub {
owner = "Benjamin-Dobell";
Expand Down

0 comments on commit 52de09c

Please sign in to comment.