Merge pull request #123762 from rraval/gfshare

launchpad/nixpkgs/master
Sandro 3 years ago committed by GitHub
commit 6061993be7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 28
      pkgs/tools/security/gfshare/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -8721,6 +8721,12 @@
githubId = 221121;
name = "Robert P. Seaton";
};
rraval = {
email = "ronuk.raval@gmail.com";
github = "rraval";
githubId = 373566;
name = "Ronuk Raval";
};
rszibele = {
email = "richard@szibele.com";
github = "rszibele";

@ -0,0 +1,28 @@
{ lib, stdenv, fetchgit, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "gfshare";
version = "2.0.0";
src = fetchgit {
url = "git://git.gitano.org.uk/libgfshare.git";
rev = version;
sha256 = "0s37xn9pr5p820hd40489xwra7kg3gzqrxhc2j9rnxnd489hl0pr";
};
nativeBuildInputs = [ autoreconfHook ];
doCheck = true;
outputs = [ "bin" "lib" "dev" "out" ];
meta = with lib; {
# Not the most descriptive homepage but it's what Debian and Ubuntu use
# https://packages.debian.org/sid/libgfshare2
# https://launchpad.net/ubuntu/impish/+source/libgfshare/+copyright
homepage = "https://git.gitano.org.uk/libgfshare.git/";
description = "Shamir's secret-sharing method in the Galois Field GF(2**8)";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.rraval ];
};
}

@ -852,6 +852,8 @@ in
amidst = callPackage ../tools/games/amidst { };
gfshare = callPackage ../tools/security/gfshare { };
gobgp = callPackage ../tools/networking/gobgp { };
metapixel = callPackage ../tools/graphics/metapixel { };

Loading…
Cancel
Save