tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libksba: 1.2.0 -> 1.3.1
William A. Kennington III
11 years ago
b7eead88
fa627585
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libksba
default.nix
+7
-4
pkgs/development/libraries/libksba/default.nix
···
1
1
{ stdenv, fetchurl, libgpgerror }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "libksba-1.2.0";
4
4
+
name = "libksba-1.3.1";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://gnupg/libksba/${name}.tar.bz2";
8
8
-
sha256 = "0jwk7hm3x3g4hd7l12z3d79dy7359x7lc88dq6z7q0ixn1jwxbq9";
8
8
+
sha256 = "1ya6mcd6pk2v1pylvlk6wv3869aslz2mr2xw2gs6faxx2ravk5mw";
9
9
};
10
10
11
11
-
propagatedBuildInputs = [libgpgerror];
11
11
+
propagatedBuildInputs = [ libgpgerror ];
12
12
13
13
-
meta = {
13
13
+
meta = with stdenv.lib; {
14
14
homepage = http://www.gnupg.org;
15
15
description = "CMS and X.509 access library under development";
16
16
+
platforms = platforms.all;
17
17
+
license = licenses.lgpl3;
18
18
+
maintainers = with maintainers; [ wkennington ];
16
19
};
17
20
}