mprocs: 0.7.1 -> 0.7.2 (#375444)
[NixPkgs.git] / pkgs / by-name / vi / virt-what / package.nix
blobb06b0761a24be02449547851366bc8062d001e7f
2   stdenv,
3   lib,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "virt-what";
9   version = "1.27";
11   src = fetchurl {
12     url = "https://people.redhat.com/~rjones/virt-what/files/${pname}-${version}.tar.gz";
13     sha256 = "sha256-1Nm9nUrlkJVZdEP6xmNJUxXH60MwuHKqXwYt84rGm/E=";
14   };
16   meta = with lib; {
17     description = "Detect if running in a virtual machine and prints its type";
18     homepage = "https://people.redhat.com/~rjones/virt-what/";
19     maintainers = with maintainers; [ fpletz ];
20     license = licenses.gpl2Plus;
21     platforms = platforms.linux;
22     mainProgram = "virt-what";
23   };