2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libsodium }:
|
2015-06-29 16:45:01 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "minisign";
|
2020-07-07 11:20:00 +02:00
|
|
|
version = "0.9";
|
2015-06-29 16:45:01 +02:00
|
|
|
|
2016-07-16 16:35:51 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "minisign";
|
|
|
|
owner = "jedisct1";
|
|
|
|
rev = version;
|
2020-07-07 11:20:00 +02:00
|
|
|
sha256 = "0qx3hnkwx6ij0hgp5vc74x36qfc4h5wgzr70fqqhmv3zb8q9f2vn";
|
2015-06-29 16:45:01 +02:00
|
|
|
};
|
|
|
|
|
2020-07-07 11:20:00 +02:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2016-03-07 18:35:10 +01:00
|
|
|
buildInputs = [ libsodium ];
|
2015-06-29 16:45:01 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-06-29 16:45:01 +02:00
|
|
|
description = "A simple tool for signing files and verifying signatures";
|
|
|
|
longDescription = ''
|
|
|
|
minisign uses public key cryptography to help facilitate secure (but not
|
|
|
|
necessarily private) file transfer, e.g., of software artefacts. minisign
|
|
|
|
is similar to and compatible with OpenBSD's signify.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://jedisct1.github.io/minisign/";
|
2015-06-29 16:45:01 +02:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2016-07-16 16:35:51 +02:00
|
|
|
platforms = platforms.unix;
|
2015-06-29 16:45:01 +02:00
|
|
|
};
|
|
|
|
}
|