f64b063e54
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat -h` got 0 exit code - ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat --help` got 0 exit code - ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat -h` and found version 1.1.2 - ran `/nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2/bin/nanocat --help` and found version 1.1.2 - found 1.1.2 with grep in /nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2 - found 1.1.2 in filename of file in /nix/store/yzb91gfv6pvyvc662n9sc9rzf2mki8ss-nanomsg-1.1.2
23 lines
527 B
Nix
23 lines
527 B
Nix
{ stdenv, cmake, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.2";
|
|
name = "nanomsg-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nanomsg";
|
|
repo = "nanomsg";
|
|
rev = version;
|
|
sha256 = "1zvs91afsg61azfv5fldv84gnhf76w3yndkdvpvaprlacxbxdvf5";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description= "Socket library that provides several common communication patterns";
|
|
homepage = http://nanomsg.org/;
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|