nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

20 lines
520 B
Nix
Raw Normal View History

2012-08-28 02:36:16 +04:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2012-12-05 14:54:12 +04:00
name = "spice-protocol-0.12.2";
2012-08-28 02:36:16 +04:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
2012-12-05 14:54:12 +04:00
sha256 = "0v6msf6gbl8g69qamp97dggz148zpc3ncbfgbq3b472wszjdkclb";
2012-08-28 02:36:16 +04:00
};
meta = {
description = "Protocol headers for the SPICE protocol.";
homepage = http://www.spice-space.org;
license = stdenv.lib.licenses.bsd3;
2012-08-30 10:33:10 +04:00
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
platforms = stdenv.lib.platforms.linux;
2012-08-28 02:36:16 +04:00
};
}