mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 06:28:50 +03:00
Merge pull request #32712 from vdemeester/init-notary
notary: init at 0.5.1
This commit is contained in:
commit
a3d84cbd32
55
pkgs/tools/security/notary/default.nix
Normal file
55
pkgs/tools/security/notary/default.nix
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, buildGoPackage, git, libtool }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "notary-${version}";
|
||||||
|
version = "0.5.1";
|
||||||
|
gitcommit = "9211198";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "theupdateframework";
|
||||||
|
repo = "notary";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0z9nsb1mrl0q5j02jkyzbc6xqsm83qzacsckypsxcrijhw935rs5";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libtool ];
|
||||||
|
|
||||||
|
goPackagePath = "github.com/docker/notary";
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
cd go/src/github.com/docker/notary
|
||||||
|
make GITCOMMIT=${gitcommit} GITUNTRACKEDCHANGES= client
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D bin/notary $bin/bin/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 = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -3726,6 +3726,8 @@ with pkgs;
|
|||||||
|
|
||||||
nnn = callPackage ../applications/misc/nnn { };
|
nnn = callPackage ../applications/misc/nnn { };
|
||||||
|
|
||||||
|
notary = callPackage ../tools/security/notary { };
|
||||||
|
|
||||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||||
|
|
||||||
nox = callPackage ../tools/package-management/nox {
|
nox = callPackage ../tools/package-management/nox {
|
||||||
|
Loading…
Reference in New Issue
Block a user