Skip to content

Commit bbe5f99

Browse files
committedNov 23, 2016
qemu: add curl to buildInputs
Enables support for accessing files over HTTP: qemu-system-x86_64 -drive media=cdrom,file=http://host/path.iso,readonly Increases the closures size from 445 to 447 MiB.
1 parent ecf3098 commit bbe5f99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pkgs/applications/virtualization/qemu/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{ stdenv, fetchurl, fetchpatch, python, zlib, pkgconfig, glib
22
, ncurses, perl, pixman, vde2, alsaLib, texinfo, libuuid, flex
3-
, bison, lzo, snappy, libaio, gnutls, nettle
3+
, bison, lzo, snappy, libaio, gnutls, nettle, curl
44
, makeWrapper
55
, attr, libcap, libcap_ng
66
, CoreServices, Cocoa, rez, setfile
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
3232
buildInputs =
3333
[ python zlib pkgconfig glib ncurses perl pixman
3434
vde2 texinfo libuuid flex bison makeWrapper lzo snappy
35-
gnutls nettle
35+
gnutls nettle curl
3636
]
3737
++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ]
3838
++ optionals seccompSupport [ libseccomp ]

0 commit comments

Comments
 (0)
Please sign in to comment.