mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
casync: init at 2-152-ge4a3c5e
This commit is contained in:
parent
db0da282c3
commit
0ee0582a8f
26
pkgs/applications/networking/sync/casync/default.nix
Normal file
26
pkgs/applications/networking/sync/casync/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, meson, ninja, pkgconfig, sphinx, acl, curl, fuse, libselinux, udev, xz, zstd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "casync-${version}";
|
||||
version = "2-152-ge4a3c5e";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "systemd";
|
||||
repo = "casync";
|
||||
rev = "e4a3c5efc8f11e0e99f8cc97bd417665d92b40a9";
|
||||
sha256 = "0zx6zvj5a6rr3w9s207rvpfw7gwssiqmp1p3c75bsirmz4nmsdf0";
|
||||
};
|
||||
|
||||
buildInputs = [ acl curl fuse libselinux udev xz zstd ];
|
||||
nativeBuildInputs = [ meson ninja pkgconfig sphinx ];
|
||||
|
||||
PKG_CONFIG_UDEV_UDEVDIR = "lib/udev";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Content-Addressable Data Synchronizer";
|
||||
homepage = https://github.com/systemd/casync;
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ flokli ];
|
||||
};
|
||||
}
|
@ -991,6 +991,10 @@ with pkgs;
|
||||
capstone = callPackage ../development/libraries/capstone { };
|
||||
unicorn-emu = callPackage ../development/libraries/unicorn-emu { };
|
||||
|
||||
casync = callPackage ../applications/networking/sync/casync {
|
||||
sphinx = python3Packages.sphinx;
|
||||
};
|
||||
|
||||
cataract = callPackage ../applications/misc/cataract { };
|
||||
cataract-unstable = callPackage ../applications/misc/cataract/unstable.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user