easysnap: init at 2018-10-28
This commit is contained in:
parent
7c3dd045ce
commit
df51c5ef80
|
@ -3900,6 +3900,11 @@
|
||||||
github = "sjagoe";
|
github = "sjagoe";
|
||||||
name = "Simon Jagoe";
|
name = "Simon Jagoe";
|
||||||
};
|
};
|
||||||
|
sjau = {
|
||||||
|
email = "nixos@sjau.ch";
|
||||||
|
github = "sjau";
|
||||||
|
name = "Stephan Jau";
|
||||||
|
};
|
||||||
sjmackenzie = {
|
sjmackenzie = {
|
||||||
email = "setori88@gmail.com";
|
email = "setori88@gmail.com";
|
||||||
github = "sjmackenzie";
|
github = "sjmackenzie";
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{stdenv, fetchFromGitHub, zfs }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "easysnap-${version}";
|
||||||
|
version = "unstable-2018-10-28";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sjau";
|
||||||
|
repo = "easysnap";
|
||||||
|
rev = "aa2768762da7730aa3eb90fdc2190a8359976edc";
|
||||||
|
sha256 = "0csn7capsmlkin4cf1fgl766gvszvqfllqkiyz0g9bvbapxv7nba";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp -n easysnap* $out/bin/
|
||||||
|
|
||||||
|
for i in $out/bin/*; do
|
||||||
|
substituteInPlace $i \
|
||||||
|
--replace zfs ${zfs}/bin/zfs
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/sjau/easysnap;
|
||||||
|
description = "Customizable ZFS Snapshotting tool with zfs send/recv pulling";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ sjau ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -2335,6 +2335,8 @@ with pkgs;
|
||||||
|
|
||||||
easyrsa2 = callPackage ../tools/networking/easyrsa/2.x.nix { };
|
easyrsa2 = callPackage ../tools/networking/easyrsa/2.x.nix { };
|
||||||
|
|
||||||
|
easysnap = callPackage ../tools/backup/easysnap { };
|
||||||
|
|
||||||
ebook_tools = callPackage ../tools/text/ebook-tools { };
|
ebook_tools = callPackage ../tools/text/ebook-tools { };
|
||||||
|
|
||||||
ecryptfs = callPackage ../tools/security/ecryptfs { };
|
ecryptfs = callPackage ../tools/security/ecryptfs { };
|
||||||
|
|
Loading…
Reference in New Issue