tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
minixml: 2.9 -> 2.12
authored by
Renaud
and committed by
GitHub
7 years ago
4d218e9d
c618667b
+10
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
minixml
default.nix
+10
-6
pkgs/development/libraries/minixml/default.nix
···
1
-
{ stdenv, fetchurl }:
2
3
-
stdenv.mkDerivation rec {
4
name = "mxml-${version}";
5
-
version = "2.9";
6
7
-
src = fetchurl {
8
-
url = "http://www.msweet.org/files/project3/${name}.tar.gz";
9
-
sha256 = "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd";
0
0
10
};
0
0
11
12
meta = with stdenv.lib; {
13
description = "A small XML library";
···
1
+
{ stdenv, fetchFromGitHub }:
2
3
+
stdenv.mkDerivation rec {
4
name = "mxml-${version}";
5
+
version = "2.12";
6
7
+
src = fetchFromGitHub {
8
+
owner = "michaelrsweet";
9
+
repo = "mxml";
10
+
rev = "v${version}";
11
+
sha256 = "1m8z503vnfpm576gjpp1h7zmx09n50if2i28v24yx80j820ip94s";
12
};
13
+
14
+
enableParallelBuilding = true;
15
16
meta = with stdenv.lib; {
17
description = "A small XML library";