1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/spice-protocol/default.nix

20 lines
519 B
Nix
Raw Normal View History

2012-08-27 23:36:16 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-07-04 16:35:52 +01:00
name = "spice-protocol-0.12.6";
2012-08-27 23:36:16 +01:00
src = fetchurl {
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
2013-07-04 16:35:52 +01:00
sha256 = "16r5x2sppiaa6pzawkrvk5q4hmw7ynmlp2xr38f1vaxj5rh4aiwx";
2012-08-27 23:36:16 +01:00
};
meta = {
description = "Protocol headers for the SPICE protocol";
2012-08-27 23:36:16 +01:00
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
};
}