mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
virt-what: init at 1.18
This commit is contained in:
parent
169a344ab8
commit
df86f19968
19
pkgs/applications/virtualization/virt-what/default.nix
Normal file
19
pkgs/applications/virtualization/virt-what/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, lib, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "virt-what-${version}";
|
||||
version = "1.18";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://people.redhat.com/~rjones/virt-what/files/${name}.tar.gz";
|
||||
sha256 = "1x32h7i6lh823wj97r5rr2hg1v215kqzly14dwg0mwx62j1dshmw";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -16751,6 +16751,8 @@ with pkgs;
|
||||
ocamlPackages = ocamlPackages_4_01_0;
|
||||
};
|
||||
|
||||
virt-what = callPackage ../applications/virtualization/virt-what { };
|
||||
|
||||
virtmanager = callPackage ../applications/virtualization/virt-manager {
|
||||
vte = gnome3.vte;
|
||||
dconf = gnome3.dconf;
|
||||
|
Loading…
Reference in New Issue
Block a user