Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 62ce2bb42a3c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b28552d58f7d
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 25, 2018

  1. signify: init at 24 (#48927)

    rlupton20 authored and joachifm committed Oct 25, 2018

    Unverified

    No user is associated with the committer email.
    Copy the full SHA
    b28552d View commit details
Showing with 36 additions and 0 deletions.
  1. +34 −0 pkgs/tools/security/signify/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
34 changes: 34 additions & 0 deletions pkgs/tools/security/signify/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, libbsd, pkgconfig }:

stdenv.mkDerivation rec {
name = "signify-${version}";
version = "24";

src = fetchFromGitHub {
owner = "aperezdc";
repo = "signify";
rev = "v${version}";
sha256 = "0grdlrpxcflzmzzc30r8rvsmamvbsgqyni59flzzk4w5hpjh464w";
};

doCheck = true;

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libbsd ];

preInstall = ''
export PREFIX=$out
'';

meta = with stdenv.lib; {
description = "OpenBSD signing tool";
longDescription = ''
OpenBSDs signing tool, which uses the Ed25519 public key signature system
for fast signing and verification of messages using small public keys.
'';
homepage = https://www.tedunangst.com/flak/post/signify;
license = licenses.isc;
maintainers = [ maintainers.rlupton20 ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -5286,6 +5286,8 @@ with pkgs;

signal-desktop = callPackage ../applications/networking/instant-messengers/signal-desktop { };

signify = callPackage ../tools/security/signify { };

# aka., pgp-tools
signing-party = callPackage ../tools/security/signing-party { };