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: 5d173c9ee22c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 127c1b19b382
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 18, 2019

  1. ecdsatool: init at 0.0.1

    Added `ecdsatool`, used for ECC NISTP256 keypairs.
    This tool is distinct from the similarly names `ecdsautils`.
    alex-ameen authored Mar 18, 2019
    Copy the full SHA
    895f86e View commit details

Commits on Mar 26, 2019

  1. Merge pull request #57872 from BadDecisionsAlex/patch-3

    ecdsatool: init at 0.0.1
    matthewbauer authored Mar 26, 2019
    Copy the full SHA
    127c1b1 View commit details
Showing with 28 additions and 0 deletions.
  1. +28 −0 pkgs/tools/security/default.nix
28 changes: 28 additions & 0 deletions pkgs/tools/security/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ stdenv, pkgs }:

stdenv.mkDerivation rec {
version = "0.0.1";
name = "ecdsatool-${version}";

src = pkgs.fetchFromGitHub {
owner = "kaniini";
repo = "ecdsatool";
rev = "7c0b2c51e2e64d1986ab1dc2c57c2d895cc00ed1";
sha256 = "08z9309znkhrjpwqd4ygvm7cd1ha1qbrnlzw64fr8704jrmx762k";
};

configurePhase = ''
./autogen.sh
./configure --prefix=$out
'';

nativeBuildInputs = with pkgs; [openssl autoconf automake];
buildInputs = with pkgs; [libuecc];

meta = with stdenv.lib; {
description = "Create and manipulate ECC NISTP256 keypairs.";
homepage = https://github.com/kaniini/ecdsatool/;
license = with licenses; [free];
platforms = platforms.unix;
};
}