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