1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

perlPackages.Swim: init at 0.1.44

Add the Perl module `Swim`, version 0.1.44, generated by
`nix-generate-from-cpan`.

This Perl module is the reference implementation for the lightweight
markup language [Swim].

I have tested this change per nixpkgs manual section 11.1 ("Making
patches").

[Swim]: <https://github.com/ingydotnet/swim-info>
This commit is contained in:
c74d 2016-12-04 05:48:54 +00:00 committed by Tuomas Tynkkynen
parent 524f7c02dc
commit 7f5af41140

View file

@ -11854,6 +11854,21 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ pkgs.subversionClient ];
};
Swim = buildPerlPackage rec {
name = "Swim-0.1.44";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IN/INGY/${name}.tar.gz";
sha256 = "06aac148d7b1778028ffae657fdf79b1093b52035661fd8b9bdad729dc8741aa";
};
buildInputs = [ FileShareDirInstall ];
propagatedBuildInputs = [ HTMLEscape HashMerge IPCRun Pegex TextAutoformat YAMLLibYAML ];
meta = {
homepage = https://github.com/ingydotnet/swim-pm;
description = "See What I Mean?!";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
Switch = buildPerlPackage rec {
name = "Switch-2.17";
src = fetchurl {