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

20 lines
520 B
Nix
Raw Normal View History

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