Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
perlPackages: init Sereal package family at 4.005
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed Oct 2, 2018
1 parent 919a3b7 commit 65923ed
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13423,6 +13423,55 @@ let
};
};

SerealDecoder = buildPerlPackage rec {
name = "Sereal-Decoder-4.005";
src = fetchurl {
url = "mirror://cpan/authors/id/Y/YV/YVES/${name}.tar.gz";
sha256 = "17syqbq17qw6ajg3w88q9ljdm4c2b7zadq9pwshxxgyijg8dlfh4";
};
buildInputs = [ TestDeep TestDifferences TestWarn TestLongString ];
propagatedBuildInputs = [ XSLoader ];
preBuild = ''ls'';
meta = {
homepage = https://github.com/Sereal/Sereal;
description = "Fast, compact, powerful binary deserialization";
license = with stdenv.lib.licenses; [ artistic2 ];
maintainers = [ maintainers.thoughtpolice ];
};
};

SerealEncoder = buildPerlPackage rec {
name = "Sereal-Encoder-4.005";
src = fetchurl {
url = "mirror://cpan/authors/id/Y/YV/YVES/${name}.tar.gz";
sha256 = "02hbk5dwq7fpnyb3vp7xxhb41ra48xhghl13p9pjq9lzsqlb6l19";
};
buildInputs = [ TestDeep TestDifferences TestWarn TestLongString ];
propagatedBuildInputs = [ XSLoader SerealDecoder ];
meta = {
homepage = https://github.com/Sereal/Sereal;
description = "Fast, compact, powerful binary deserialization";
license = with stdenv.lib.licenses; [ artistic2 ];
maintainers = [ maintainers.thoughtpolice ];
};
};

Sereal = buildPerlPackage rec {
name = "Sereal-4.005";
src = fetchurl {
url = "mirror://cpan/authors/id/Y/YV/YVES/${name}.tar.gz";
sha256 = "0lnczrf311pl9b2x75r0ffsszv5aspfb8x6jdvgr3rgqp7nbm1wr";
};
buildInputs = [ TestDeep TestDifferences TestWarn TestLongString ];
propagatedBuildInputs = [ SerealEncoder SerealDecoder ];
meta = {
homepage = https://github.com/Sereal/Sereal;
description = "Fast, compact, powerful binary deserialization";
license = with stdenv.lib.licenses; [ artistic2 ];
maintainers = [ maintainers.thoughtpolice ];
};
};

ServerStarter = buildPerlModule rec {
name = "Server-Starter-0.34";
src = fetchurl {
Expand Down

0 comments on commit 65923ed

Please sign in to comment.