2017-09-28 21:13:19 +02:00
|
|
|
{ stdenv, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "virt-what-${version}";
|
2018-11-08 16:28:44 +01:00
|
|
|
version = "1.19";
|
2017-09-28 21:13:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://people.redhat.com/~rjones/virt-what/files/${name}.tar.gz";
|
2018-11-08 16:28:44 +01:00
|
|
|
sha256 = "00nhwly5q0ps8yv9cy3c2qp8lfshf3s0kdpwiy5zwk3g77z96rwk";
|
2017-09-28 21:13:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Detect if running in a virtual machine and prints its type";
|
|
|
|
homepage = "https://people.redhat.com/~rjones/virt-what/";
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|