nixpkgs/pkgs/development/libraries/socket_wrapper/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
575 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config }:
2015-03-04 22:25:03 +00:00
stdenv.mkDerivation rec {
pname = "socket_wrapper";
version = "1.3.3";
2015-03-04 22:25:03 +00:00
src = fetchurl {
url = "mirror://samba/cwrap/socket_wrapper-${version}.tar.gz";
2021-09-14 06:19:17 +00:00
sha256 = "sha256-G42i+w7n3JkPvOc039I+frzDnq1GGGyQqUkMFdoebhM=";
2015-03-04 22:25:03 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2015-03-04 22:25:03 +00:00
meta = with lib; {
description = "A library passing all socket communications through unix sockets";
homepage = "https://git.samba.org/?p=socket_wrapper.git;a=summary;";
2015-03-04 22:25:03 +00:00
license = licenses.bsd3;
platforms = platforms.all;
};
}