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

29 lines
711 B
Nix
Raw Normal View History

2017-06-26 01:46:06 +00:00
{ stdenv, fetchFromGitHub, cmake, perl, zlib, bzip2, popt }:
2015-03-26 23:52:41 +00:00
stdenv.mkDerivation rec {
name = "librsync-${version}";
2017-06-26 01:46:06 +00:00
version = "2.0.0";
2015-03-26 23:52:41 +00:00
src = fetchFromGitHub {
owner = "librsync";
repo = "librsync";
rev = "v${version}";
2017-06-26 01:46:06 +00:00
sha256 = "0yad7nkw6d8j824qkxrj008ak2wq6yw5p894sbhr35yc1wr5mki6";
};
2017-06-26 01:46:06 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ perl zlib bzip2 popt ];
crossAttrs = {
dontStrip = true;
};
2015-03-26 23:52:41 +00:00
meta = with stdenv.lib; {
homepage = http://librsync.sourceforge.net/;
2015-03-26 23:52:41 +00:00
license = licenses.lgpl2Plus;
description = "Implementation of the rsync remote-delta algorithm";
2015-03-26 23:52:41 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}