nixpkgs/pkgs/development/libraries/spice-protocol/default.nix
2014-09-01 00:47:42 -07:00

19 lines
508 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "spice-protocol-0.12.7";
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
sha256 = "1hhn94bw2l76h09sy05a15bs6zalsijnylyqpwcys5hq6rrwpiln";
};
meta = with stdenv.lib; {
description = "Protocol headers for the SPICE protocol";
homepage = http://www.spice-space.org;
license = licenses.bsd3;
maintainers = with maintainers; [ bluescreen303 ];
platforms = platforms.linux;
};
}