mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 06:44:06 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
30 lines
979 B
Nix
30 lines
979 B
Nix
{ 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 ];
|
|
broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gfshare.x86_64-darwin
|
|
};
|
|
}
|