summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/drone/default.nix
blob: 53ad6f4c2f610531360b22e7e7b790393698b379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, buildGoPackage, go-bindata, go-bindata-assetfs }:

buildGoPackage rec {
  pname = "drone.io";
  version = "0.8.6-20180727-${stdenv.lib.strings.substring 0 7 revision}";
  revision = "c48150767c2700d35dcc29b110a81c8b5969175e";
  goPackagePath = "github.com/drone/drone";

  # These dependencies pulled (in `drone` buildprocess) via Makefile,
  # so I extracted them here, all revisions pinned by same date, as ${version}
  goDeps= ./deps.nix;

  nativeBuildInputs = [ go-bindata go-bindata-assetfs ];

  src = fetchFromGitHub {
    owner = "drone";
    repo = "drone";
    rev = revision;
    sha256 = "0miq2012nivvr1ysi3aa2xrr5ak3mf0l3drybyc83iycy0kp4bda";
  };

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ avnik vdemeester ];
    license = licenses.asl20;
    description = "Continuous Integration platform built on container technology";
  };
}