nix/pkgs: add duplicacy

This commit is contained in:
steveej 2018-11-11 01:06:53 +01:00
parent 3ed35ec5b2
commit 33e015bb92
4 changed files with 368 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ buildGoPackage
, fetchFromGitHub
}:
buildGoPackage rec {
name = "duplicay-${version}";
version = "2.1.2";
goPackagePath = "github.com/gilbertchen/duplicacy";
src = fetchFromGitHub {
"owner" = "gilbertchen";
"repo" = "duplicacy";
"rev" = "v2.1.2";
"sha256" = "0v3rk4da4b6dhqq8zsr4z27wd8p7crxapkn265kwpsaa99xszzbv";
};
goDeps = ./deps.nix;
}