7da8f449f3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/spice-protocol/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.12.14 with grep in /nix/store/c8d98iaj9smm6k0fkcjnz8x9byb6vb1x-spice-protocol-0.12.14 - directory tree listing: https://gist.github.com/4927fbed4bca5bd3e211633f48595e5f - du listing: https://gist.github.com/67d9c9cad3d1803064b71e56d68c8a26
24 lines
606 B
Nix
24 lines
606 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "spice-protocol-0.12.14";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.spice-space.org/download/releases/${name}.tar.bz2";
|
|
sha256 = "170ckpgazvqv7hxy209myg67pqnd6c0gvr4ysbqgsfch6320nd90";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
ln -sv ../share/pkgconfig $out/lib/pkgconfig
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|