summary refs log tree commit diff
path: root/pkgs/tools/security/notary/default.nix
blob: 4f0b5f2c9548d4d330ec7199d0ddab8de2f50bbe (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{ stdenv, fetchFromGitHub, buildGoPackage, libtool }:

buildGoPackage rec {
  pname = "notary";
  version = "0.6.1";
  gitcommit = "d6e1431f";

  src = fetchFromGitHub {
    owner = "theupdateframework";
    repo = "notary";
    rev = "v${version}";
    sha256 = "1ak9dk6vjny5069hp3w36dbjawcnaq82l3i2qvf7mn7zfglbsnf9";
  };

  patches = [ ./no-git-usage.patch ];

  buildInputs = [ libtool ];
  buildPhase = ''
    runHook preBuild
    cd go/src/github.com/theupdateframework/notary
    SKIPENVCHECK=1 make client GITCOMMIT=${gitcommit}
    runHook postBuild
  '';

  goPackagePath = "github.com/theupdateframework/notary";

  installPhase = ''
    runHook preInstall
    install -D bin/notary $bin/bin/notary
    runHook postInstall
  '';

  #doCheck = true; # broken by tzdata: 2018g -> 2019a
  checkPhase = ''
    make test PKGS=github.com/theupdateframework/notary/cmd/notary
  '';

  meta = with stdenv.lib; {
    description = "Notary is a project that allows anyone to have trust over arbitrary collections of data";
    longDescription = ''
      The Notary project comprises a server and a client for running and
      interacting with trusted collections. See the service architecture
      documentation for more information.

      Notary aims to make the internet more secure by making it easy for people
      to publish and verify content. We often rely on TLS to secure our
      communications with a web server which is inherently flawed, as any
      compromise of the server enables malicious content to be substituted for
      the legitimate content.

      With Notary, publishers can sign their content offline using keys kept
      highly secure. Once the publisher is ready to make the content available,
      they can push their signed trusted collection to a Notary Server.

      Consumers, having acquired the publisher's public key through a secure
      channel, can then communicate with any notary server or (insecure) mirror,
      relying only on the publisher's key to determine the validity and
      integrity of the received content.
    '';
    license = licenses.asl20;
    homepage = "https://github.com/theupdateframework/notary";
    maintainers = with maintainers; [ vdemeester ];
    platforms = platforms.unix;
  };
}