perl-Catalyst-Devel: cleanup

This commit is contained in:
Robert Helgesson 2016-05-23 20:22:12 +02:00
parent 32739fc0fc
commit 06101d6699
1 changed files with 5 additions and 5 deletions

View File

@ -993,19 +993,19 @@ let self = _self // overrides; _self = with self; {
}; };
}; };
CatalystDevel = buildPerlPackage { CatalystDevel = buildPerlPackage rec {
name = "Catalyst-Devel-1.39"; name = "Catalyst-Devel-1.39";
src = fetchurl { src = fetchurl {
url = mirror://cpan/authors/id/I/IL/ILMARI/Catalyst-Devel-1.39.tar.gz; url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
sha256 = "12m50bbkggjmpxihv3wnvr0g2qng0zwhlzi5ygppjz8wh2x73qxw"; sha256 = "bce371ba801c7d79eff3257e0af907cf62f140de968f0d63bf55be37d702a58a";
}; };
buildInputs = [ TestFatal ]; buildInputs = [ TestFatal ];
propagatedBuildInputs = [ CatalystRuntime CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast namespaceautoclean namespaceclean PathClass Starman TemplateToolkit ]; propagatedBuildInputs = [ CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple CatalystRuntime ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast PathClass TemplateToolkit Starman namespaceautoclean namespaceclean ];
meta = { meta = {
homepage = http://dev.catalyst.perl.org/; homepage = http://dev.catalyst.perl.org/;
description = "Catalyst Development Tools"; description = "Catalyst Development Tools";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.all;
}; };
}; };