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

Commits on May 29, 2020

  1. perlPackages.DataULID: init at 1.0.0

    dependencies:
    perlPackages.EncodeBase32GMP: init at 0.02
    perlPackages.MathGMPz: init at 0.48
    stigtsp committed May 29, 2020
    Copy the full SHA
    3b2c8ef View commit details

Commits on May 30, 2020

  1. Merge pull request #89189 from stigtsp/package/perl-data-ulid-init

    perlPackages.DataULID: init at 1.0.0
    aanderse authored May 30, 2020
    Copy the full SHA
    a7b2e19 View commit details
Showing with 50 additions and 0 deletions.
  1. +50 −0 pkgs/top-level/perl-packages.nix
50 changes: 50 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -4391,6 +4391,22 @@ let
buildInputs = [ DebugShowStuff ];
};

DataULID = buildPerlPackage {
pname = "Data-ULID";
version = "1.0.0";
src = fetchurl {
url = "mirror://cpan/authors/id/B/BA/BALDUR/Data-ULID-1.0.0.tar.gz";
sha256 = "4d757475893dbad5165f0a65c446d38b47f39019d36f77da9d29c98cbf27206f";
};
propagatedBuildInputs = [ DateTime EncodeBase32GMP MathRandomSecure MathBigIntGMP ];
meta = {
homepage = "https://metacpan.org/release/Data-ULID";
description = "Universally Unique Lexicographically Sortable Identifier";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ sgo ];
};
};

DataUniqid = buildPerlPackage {
pname = "Data-Uniqid";
version = "0.12";
@@ -6392,6 +6408,23 @@ let
};
};

EncodeBase32GMP = buildPerlPackage {
pname = "Encode-Base32-GMP";
version = "0.02";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JW/JWANG/Encode-Base32-GMP-0.02.tar.gz";
sha256 = "454206fa7d82e55e03274698732341b607150f00e8e2aec58f35326a030832dc";
};
buildInputs = [ TestBase ];
propagatedBuildInputs = [ MathGMPz ];
meta = {
homepage = "https://metacpan.org/release/Encode-Base32-GMP";
description = "High speed Base32 encoding using GMP with BigInt and MD5 support";
license = stdenv.lib.licenses.mit;
maintainers = with maintainers; [ sgo ];
};
};

EncodeDetect = buildPerlModule {
pname = "Encode-Detect";
version = "1.01";
@@ -11334,6 +11367,23 @@ let
};
};

MathGMPz = buildPerlPackage {
pname = "Math-GMPz";
version = "0.48";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SI/SISYPHUS/Math-GMPz-0.48.tar.gz";
sha256 = "f4459ed32fb9bb793e2504fd442c515fd468a4a34d2a1f98e46ca41e275c73cb";
};
buildInputs = [ pkgs.gmp ];
NIX_CFLAGS_LINK = "-L${pkgs.gmp.out}/lib -lgmp";
meta = {
homepage = "https://github.com/sisyphus/math-gmpz";
description = "Perl interface to the GMP integer functions";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ sgo ];
};
};

MathGeometryVoronoi = buildPerlPackage {
pname = "Math-Geometry-Voronoi";
version = "1.3";