qemu: name -> pname
This commit is contained in:
parent
f48ecbf850
commit
4dce5d71c6
@ -36,11 +36,10 @@ in
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "4.1.0";
|
version = "4.1.0";
|
||||||
name = "qemu-"
|
pname = "qemu"
|
||||||
+ stdenv.lib.optionalString xenSupport "xen-"
|
+ stdenv.lib.optionalString xenSupport "-xen"
|
||||||
+ stdenv.lib.optionalString hostCpuOnly "host-cpu-only-"
|
+ stdenv.lib.optionalString hostCpuOnly "-host-cpu-only"
|
||||||
+ stdenv.lib.optionalString nixosTestRunner "for-vm-tests-"
|
+ stdenv.lib.optionalString nixosTestRunner "-for-vm-tests";
|
||||||
+ version;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://wiki.qemu.org/download/qemu-${version}.tar.bz2";
|
url = "https://wiki.qemu.org/download/qemu-${version}.tar.bz2";
|
||||||
|
Loading…
Reference in New Issue
Block a user