nixpkgs/pkgs/applications/virtualization/virt-what/default.nix
R. RyanTM 2d9a8df3df virt-what: 1.18 -> 1.19
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/virt-what/versions
2018-11-08 07:28:44 -08:00

20 lines
565 B
Nix

{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "virt-what-${version}";
version = "1.19";
src = fetchurl {
url = "https://people.redhat.com/~rjones/virt-what/files/${name}.tar.gz";
sha256 = "00nhwly5q0ps8yv9cy3c2qp8lfshf3s0kdpwiy5zwk3g77z96rwk";
};
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;
};
}