Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 26 lines 667 B view raw
1# This file was generated by go2nix. 2{ lib, buildGoPackage, fetchFromGitHub, lvm2 }: 3 4buildGoPackage rec { 5 pname = "convoy"; 6 version = "0.5.2"; 7 8 goPackagePath = "github.com/rancher/convoy"; 9 10 src = fetchFromGitHub { 11 rev = "v${version}"; 12 owner = "rancher"; 13 repo = "convoy"; 14 sha256 = "09nygrxd5hril4xcfsvgjg74xxhhimznqq4sdk0f360c5ra0dbhj"; 15 }; 16 17 buildInputs = [lvm2]; 18 19 meta = with lib; { 20 homepage = "https://github.com/rancher/convoy"; 21 description = "A Docker volume plugin, managing persistent container volumes"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ offline ]; 24 platforms = platforms.linux; 25 }; 26}