about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/gfshare/default.nix
blob: 3079c7fb57f2731b122b2614d3d8ac17c9cc0c95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 ];
  };
}