this takes care of the following folders in pkgs/development: * arduino * chez-modules * go-packages * guile-modules * idris-modules * perl-modules * r-modules * ruby-modules
···1# Build a version of idris with a set of packages visible
2# packages: The packages visible to idris
3-{ stdenv, idris, symlinkJoin, makeWrapper }: packages:
45-let paths = stdenv.lib.closePropagation packages;
6in
7-stdenv.lib.appendToName "with-packages" (symlinkJoin {
89 inherit (idris) name;
10
···1# Build a version of idris with a set of packages visible
2# packages: The packages visible to idris
3+{ stdenv, lib, idris, symlinkJoin, makeWrapper }: packages:
45+let paths = lib.closePropagation packages;
6in
7+lib.appendToName "with-packages" (symlinkJoin {
89 inherit (idris) name;
10
···1-{buildPerlPackage, stdenv, fetchurl, DBDmysql}:
23buildPerlPackage {
4 pname = "maatkit";
···27 done
28 '' ;
2930- meta = {
31 description = "Database toolkit";
32 longDescription = ''
33 You can use Maatkit to prove replication is working correctly, fix
···37 In addition to MySQL, there is support for PostgreSQL, Memcached, and a
38 growing variety of other databases and technologies.
39 '';
40- license = stdenv.lib.licenses.gpl2Plus;
41 homepage = "http://www.maatkit.org/";
42 };
43}
···1+{buildPerlPackage, lib, stdenv, fetchurl, DBDmysql}:
23buildPerlPackage {
4 pname = "maatkit";
···27 done
28 '' ;
2930+ meta = with lib; {
31 description = "Database toolkit";
32 longDescription = ''
33 You can use Maatkit to prove replication is working correctly, fix
···37 In addition to MySQL, there is support for PostgreSQL, Memcached, and a
38 growing variety of other databases and technologies.
39 '';
40+ license = licenses.gpl2Plus;
41 homepage = "http://www.maatkit.org/";
42 };
43}