mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
29 lines
752 B
Nix
29 lines
752 B
Nix
{ stdenv, fetchurl, cmake, openssl, pcsclite, opensc, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "3.10.1.1212";
|
|
name = "libdigidoc-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://installer.id.ee/media/ubuntu/pool/main/libd/libdigidoc/libdigidoc_3.10.1.1212.orig.tar.xz";
|
|
sha256 = "ad5e0603aea2e02977f17318cc93a53c3a19a815e57b2347d97136d11c110807";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
mkdir src
|
|
tar xf $src -C src
|
|
cd src
|
|
'';
|
|
|
|
buildInputs = [ cmake openssl pcsclite opensc libxml2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library for creating DigiDoc signature files";
|
|
homepage = http://www.id.ee/;
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jagajaga ];
|
|
};
|
|
}
|