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

Commits on Mar 28, 2019

  1. minixml: 2.12 -> 3.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/mxml/versions
    r-ryantm authored and infinisil committed Mar 28, 2019
    Copy the full SHA
    f9de74d View commit details
  2. Merge pull request #57326 from r-ryantm/auto-update/mxml

    minixml: 2.12 -> 3.0
    infinisil authored Mar 28, 2019
    Copy the full SHA
    483654e View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/minixml/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/minixml/default.nix
Original file line number Diff line number Diff line change
@@ -2,21 +2,21 @@

stdenv.mkDerivation rec {
name = "mxml-${version}";
version = "2.12";
version = "3.0";

src = fetchFromGitHub {
owner = "michaelrsweet";
repo = "mxml";
rev = "v${version}";
sha256 = "1m8z503vnfpm576gjpp1h7zmx09n50if2i28v24yx80j820ip94s";
sha256 = "0madp2v2md3xq96aham91byns6qy4byd5pbg28q827fdahfhpmq7";
};

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "A small XML library";
homepage = https://www.msweet.org/mxml/;
license = licenses.lgpl2;
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};