diskrsync: init at unstable-2017-09-27

This commit is contained in:
Jaakko Luttinen
2018-02-04 12:02:30 +02:00
parent f59a0f7f1a
commit 9a5b545e86
3 changed files with 50 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{ buildGoPackage, fetchFromGitHub, stdenv }:
buildGoPackage rec {
name = "${pname}-${version}";
pname = "diskrsync";
version = "unstable-2017-09-27";
src = fetchFromGitHub {
owner = "dop251";
repo = pname;
rev = "45818879a98edceaa915739c1b8ece58e4b34866";
sha256 = "0jvx5manh1z0shvg616vw0n5cp5v4bljk6h3mmw3bdskg9r076lh";
};
goPackagePath = "github.com/dop251/diskrsync";
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Rsync for block devices and disk images";
homepage = https://github.com/dop251/diskrsync;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ jluttine ];
};
}