Skip to content

Commit

Permalink
virt-what: init at 1.18
Browse files Browse the repository at this point in the history
(cherry picked from commit df86f19)
  • Loading branch information
fpletz committed Sep 28, 2017
1 parent 870284d commit 41c9543
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pkgs/applications/virtualization/virt-what/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -15653,6 +15653,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;
Expand Down

0 comments on commit 41c9543

Please sign in to comment.