tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
socket_wrapper: 1.1.3 -> 1.1.4
William A. Kennington III
10 years ago
19f3fe6b
b95072e2
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
socket_wrapper
default.nix
+3
-3
pkgs/development/libraries/socket_wrapper/default.nix
reviewed
···
1
1
{ stdenv, fetchurl, cmake, pkgconfig }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "socket_wrapper-1.1.3";
4
4
+
name = "socket_wrapper-1.1.4";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://samba/cwrap/${name}.tar.gz";
8
8
-
sha256 = "04xfa4yhcaj63ymagmlx77fakrx3wb8ss42m15pmwjaiyi2xndx3";
8
8
+
sha256 = "0ypp7sx5rhn4jpmn5yxgr7mm5kkdcsa76xfnhgsvhagh1naqap2k";
9
9
};
10
10
11
11
-
buildInputs = [ cmake pkgconfig ];
11
11
+
nativeBuildInputs = [ cmake pkgconfig ];
12
12
13
13
meta = with stdenv.lib; {
14
14
description = "a library passing all socket communications through unix sockets";