summary refs log tree commit diff
path: root/pkgs/applications/virtualization/virt-viewer
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2011-01-13 22:30:32 +0000
committerMichael Raskin <7c6f434c@mail.ru>2011-01-13 22:30:32 +0000
commitf3afe5cd083d5764f169e746e33618a6ee2fa3ee (patch)
treef9e0fac9214e42ea669314f31f7cfcbd83bdf27f /pkgs/applications/virtualization/virt-viewer
parent259e59148e6db7136e33d92b60611cd1f870deb5 (diff)
downloadnixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar.gz
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar.bz2
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar.lz
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar.xz
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.tar.zst
nixpkgs-f3afe5cd083d5764f169e746e33618a6ee2fa3ee.zip
Adding virt-viewer
svn path=/nixpkgs/trunk/; revision=25548
Diffstat (limited to 'pkgs/applications/virtualization/virt-viewer')
-rw-r--r--pkgs/applications/virtualization/virt-viewer/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/applications/virtualization/virt-viewer/default.nix b/pkgs/applications/virtualization/virt-viewer/default.nix
new file mode 100644
index 00000000000..90e92a3e68d
--- /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
+