tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
virt-what: init at 1.18
Franz Pletz
8 years ago
df86f199
169a344a
+21
2 changed files
expand all
collapse all
unified
split
pkgs
applications
virtualization
virt-what
default.nix
top-level
all-packages.nix
+19
pkgs/applications/virtualization/virt-what/default.nix
···
1
1
+
{ stdenv, lib, fetchurl }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "virt-what-${version}";
5
5
+
version = "1.18";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "https://people.redhat.com/~rjones/virt-what/files/${name}.tar.gz";
9
9
+
sha256 = "1x32h7i6lh823wj97r5rr2hg1v215kqzly14dwg0mwx62j1dshmw";
10
10
+
};
11
11
+
12
12
+
meta = with lib; {
13
13
+
description = "Detect if running in a virtual machine and prints its type";
14
14
+
homepage = "https://people.redhat.com/~rjones/virt-what/";
15
15
+
maintainers = with maintainers; [ fpletz ];
16
16
+
license = licenses.gpl2Plus;
17
17
+
platforms = platforms.linux;
18
18
+
};
19
19
+
}
+2
pkgs/top-level/all-packages.nix
···
16751
16751
ocamlPackages = ocamlPackages_4_01_0;
16752
16752
};
16753
16753
16754
16754
+
virt-what = callPackage ../applications/virtualization/virt-what { };
16755
16755
+
16754
16756
virtmanager = callPackage ../applications/virtualization/virt-manager {
16755
16757
vte = gnome3.vte;
16756
16758
dconf = gnome3.dconf;