Advertisement
Guest User

nixpkgs/pkgs/tools/system/zrepl/default.nix

a guest
Apr 22nd, 2019
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # This file was generated by https://github.com/kamilchm/go2nix v1.2.1
  2. { stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
  3.  
  4. buildGoPackage rec {
  5. name = "zrepl-${version}";
  6. version = "v0.1.1";
  7. rev = "5138681c132948db311e303d5e0467a83677dc8e";
  8.  
  9. goPackagePath = "github.com/zrepl/zrepl";
  10.  
  11. src = fetchgit {
  12. inherit rev;
  13. url = "https://github.com/zrepl/zrepl";
  14. sha256 = "0b56i8w56p1bi9d4a5h5smizlx93vqk9d5rfpwv8ay2l0275d4y5";
  15. };
  16.  
  17. goDeps = ./deps.nix;
  18.  
  19. # TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
  20. meta = {
  21. homepage = http://zrepl.github.io;
  22. description = "zrepl is a one-stop, integrated solution for ZFS replication.";
  23. platforms = stdenv.lib.platforms.unix;
  24. maintainters = [ "Bryan Hill <bryan@bryh.ca>" ];
  25. };
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement