4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
898 B
Nix
30 lines
898 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libsodium }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "minisign";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "minisign";
|
|
owner = "jedisct1";
|
|
rev = version;
|
|
sha256 = "0qx3hnkwx6ij0hgp5vc74x36qfc4h5wgzr70fqqhmv3zb8q9f2vn";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libsodium ];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|