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

Commits on Oct 9, 2019

  1. perlPackages.DBIxClassDynamicDefault: init at 0.04

    dependencies:
    perlPackages.DBICxTestDatabase: init at 0.05
    stigtsp committed Oct 9, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    saschagrunert Sascha Grunert
    Copy the full SHA
    eb76fdc View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70820 from stigtsp/package/perl-dbix-class-dynami…

    …cdefault-init
    
    perlPackages.DBIxClassDynamicDefault: init at 0.04
    c0bw3b authored Oct 14, 2019
    Copy the full SHA
    3665f3b View commit details
Showing with 34 additions and 0 deletions.
  1. +34 −0 pkgs/top-level/perl-packages.nix
34 changes: 34 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -4650,6 +4650,23 @@ let
};
};

DBICxTestDatabase = buildPerlPackage {
pname = "DBICx-TestDatabase";
version = "0.05";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JR/JROCKWAY/DBICx-TestDatabase-0.05.tar.gz";
sha256 = "8e3bc2530b01216188c3aa65acdbd2f59c4e631f3ae085dfc439abd89f8f0acf";
};
buildInputs = [ DBIxClass ];
propagatedBuildInputs = [ DBDSQLite SQLTranslator ];
meta = {
homepage = "https://metacpan.org/pod/DBICx::TestDatabase";
description = "Create a temporary database from a DBIx::Class::Schema";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

DBIxClass = buildPerlPackage {
pname = "DBIx-Class";
version = "0.082841";
@@ -4697,6 +4714,23 @@ let
};
};

DBIxClassDynamicDefault = buildPerlPackage {
pname = "DBIx-Class-DynamicDefault";
version = "0.04";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MS/MSTROUT/DBIx-Class-DynamicDefault-0.04.tar.gz";
sha256 = "228f51ab224642584b4dc63db6de2667c5bfae2a894a9376b210a104806a5afb";
};
buildInputs = [ DBICxTestDatabase ];
propagatedBuildInputs = [ DBIxClass ];
meta = {
homepage = "https://metacpan.org/pod/DBIx::Class::DynamicDefault";
description = "Automatically set and update fields";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
maintainers = [ maintainers.sgo ];
};
};

DBIxClassHTMLWidget = buildPerlPackage {
pname = "DBIx-Class-HTMLWidget";
version = "0.16";