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

19 lines
508 B
Nix
Raw Normal View History

2012-08-27 22:36:16 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "spice-protocol-0.12.7";
2012-08-27 22:36:16 +00:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
sha256 = "1hhn94bw2l76h09sy05a15bs6zalsijnylyqpwcys5hq6rrwpiln";
2012-08-27 22:36:16 +00:00
};
2014-09-01 07:47:42 +00:00
meta = with stdenv.lib; {
description = "Protocol headers for the SPICE protocol";
2012-08-27 22:36:16 +00:00
homepage = http://www.spice-space.org;
2014-09-01 07:47:42 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ bluescreen303 ];
platforms = platforms.linux;
2012-08-27 22:36:16 +00:00
};
}