mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
30 lines
875 B
Nix
30 lines
875 B
Nix
{ stdenv, fetchFromGitHub, cmake, libsodium }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "minisign";
|
|
version = "0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "minisign";
|
|
owner = "jedisct1";
|
|
rev = version;
|
|
sha256 = "0rgg9jb5108hd5psivlrfd8cxnjylawm0glcry8ba6zlmkv949r8";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libsodium ];
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
homepage = https://jedisct1.github.io/minisign/;
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ joachifm ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|