aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/socket_wrapper
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-04 14:25:03 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-03-04 16:48:52 -0800
commit88c01c5647e435e298525aff5dcd2c60674e5282 (patch)
tree063f6bc1af473e038f42ad841bedf93d4e39a1c6 /pkgs/development/libraries/socket_wrapper
parent3e4fa69a905983ccf51652cc409b372203ed6513 (diff)
socket_wrapper: Add derivation
Diffstat (limited to 'pkgs/development/libraries/socket_wrapper')
-rw-r--r--pkgs/development/libraries/socket_wrapper/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/socket_wrapper/default.nix b/pkgs/development/libraries/socket_wrapper/default.nix
new file mode 100644
index 000000000000..391b3c574ebe
--- /dev/null
+++ b/pkgs/development/libraries/socket_wrapper/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchgit, cmake, pkgconfig }:
+
+stdenv.mkDerivation rec {
+ name = "socket_wrapper-1.1.3";
+
+ src = fetchgit {
+ url = "git://git.samba.org/socket_wrapper.git";
+ rev = "refs/tags/${name}";
+ sha256 = "0b3sfjy7418gg52qkdblfi5x57g4m44n7434xhacz9isyl5m52vn";
+ };
+
+ buildInputs = [ cmake pkgconfig ];
+
+ meta = with stdenv.lib; {
+ description = "a library passing all socket communications through unix sockets";
+ homepage = https://git.samba.org/?p=socket_wrapper.git;a=summary;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ wkennington ];
+ platforms = platforms.all;
+ };
+}