2017-09-28 19:13:19 +00:00
|
|
|
{ stdenv, lib, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "virt-what";
|
2019-10-08 23:12:53 +00:00
|
|
|
version = "1.20";
|
2017-09-28 19:13:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://people.redhat.com/~rjones/virt-what/files/${pname}-${version}.tar.gz";
|
2019-10-08 23:12:53 +00:00
|
|
|
sha256 = "1s0hg5w47gmnllbs935bx21k3zqrgvqx1wn0zzij2lfxkb9dq4zr";
|
2017-09-28 19:13:19 +00: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;
|
|
|
|
};
|
|
|
|
}
|