From f3afe5cd083d5764f169e746e33618a6ee2fa3ee Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 13 Jan 2011 22:30:32 +0000 Subject: Adding virt-viewer svn path=/nixpkgs/trunk/; revision=25548 --- .../virtualization/virt-viewer/default.nix | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 pkgs/applications/virtualization/virt-viewer/default.nix (limited to 'pkgs/applications/virtualization/virt-viewer') diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix new file mode 100644 index 000000000000..90e92a3e68de --- /dev/null +++ b/pkgs/applications/virtualization/virt-viewer/default.nix @@ -0,0 +1,50 @@ +x@{builderDefsPackage + , gnome, gtk, glib, libxml2, pkgconfig, libvirt, gtkvnc, cyrus_sasl, libtasn1 + , gnupg, libgcrypt, perl + , ...}: +builderDefsPackage +(a : +let + helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ + ["gnome"]; + + buildInputs = (map (n: builtins.getAttr n x) + (builtins.attrNames (builtins.removeAttrs x helperArgNames))) + ++ [gnome.libglade]; + sourceInfo = rec { + baseName="virt-viewer"; + version="0.2.0"; + name="${baseName}-${version}"; + url="http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz"; + hash="0lhkmp4kn0s2z8241lqf2fdi55jg9iclr5hjw3m4wzaznpiajwlp"; + }; +in +rec { + src = a.fetchurl { + url = sourceInfo.url; + sha256 = sourceInfo.hash; + }; + + inherit (sourceInfo) name version; + inherit buildInputs; + + /* doConfigure should be removed if not needed */ + phaseNames = ["doConfigure" "doMakeInstall"]; + + meta = { + description = "A viewer for remote virtual machines"; + maintainers = with a.lib.maintainers; + [ + raskin + ]; + platforms = with a.lib.platforms; + linux; + license = a.lib.licenses.gpl2; + }; + passthru = { + updateInfo = { + downloadPage = "http://virt-manager.org/download.html"; + }; + }; +}) x + -- cgit 1.4.1