Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / no / notary / package.nix
blob1f35222ee960024b6cca555d02f024a0096d4f81
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
5 buildGoModule rec {
6   pname = "notary";
7   version = "0.6.1-unstable-2024-04-16";
9   src = fetchFromGitHub {
10     owner = "notaryproject";
11     repo = "notary";
12     rev = "9d2b3b35929392c9945d976b8bdecbe2f53a299e";
13     sha256 = "sha256-u19BfTJwRWholK0b3BcgSmcMM9AR7OeXo64AOi87r0A=";
14   };
16   vendorHash = null;
18   tags = [
19     "pkcs11"
20   ];
22   ldflags = [
23     "-X github.com/theupdateframework/notary/version.NotaryVersion=${version}"
24   ];
26   # Tests try to use network.
27   doCheck = false;
29   meta = {
30     description = "Project that allows anyone to have trust over arbitrary collections of data";
31     mainProgram = "notary";
32     longDescription = ''
33       The Notary project comprises a server and a client for running and
34       interacting with trusted collections. See the service architecture
35       documentation for more information.
37       Notary aims to make the internet more secure by making it easy for people
38       to publish and verify content. We often rely on TLS to secure our
39       communications with a web server which is inherently flawed, as any
40       compromise of the server enables malicious content to be substituted for
41       the legitimate content.
43       With Notary, publishers can sign their content offline using keys kept
44       highly secure. Once the publisher is ready to make the content available,
45       they can push their signed trusted collection to a Notary Server.
47       Consumers, having acquired the publisher's public key through a secure
48       channel, can then communicate with any notary server or (insecure) mirror,
49       relying only on the publisher's key to determine the validity and
50       integrity of the received content.
51     '';
52     license = lib.licenses.asl20;
53     homepage = "https://github.com/theupdateframework/notary";
54     maintainers = [ lib.maintainers.vdemeester ];
55     platforms = lib.platforms.unix;
56   };