libdigidoc: remove
Last upstream commit is from 11. Oct 2019, nothing uses it anymore.
This commit is contained in:
parent
e6776218b6
commit
c302723969
@ -1,28 +0,0 @@
|
||||
{ lib, stdenv, fetchurl, cmake, openssl, pcsclite, opensc, libxml2, Security }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "3.10.5";
|
||||
pname = "libdigidoc";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/open-eid/libdigidoc/releases/download/v${version}/libdigidoc-${version}.tar.gz";
|
||||
sha256 = "0nw36a4i6rcq7z6jqz5h2ln9hmmsfhw65jga3rymlswk2k7bndgn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ openssl pcsclite opensc libxml2 ]
|
||||
++ lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
cmakeFlags = lib.optionals stdenv.isDarwin [ "-DFRAMEWORK=OFF" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for creating DigiDoc signature files";
|
||||
homepage = "https://github.com/open-eid/libdigidoc";
|
||||
license = licenses.lgpl2;
|
||||
maintainers = [ maintainers.jagajaga ];
|
||||
mainProgram = "cdigidoc";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -681,6 +681,7 @@ mapAliases ({
|
||||
libcroco = throw "libcroco has been removed as it's no longer used in any derivations"; # Added 2020-03-04
|
||||
libdbusmenu-glib = throw "'libdbusmenu-glib' has been renamed to/replaced by 'libdbusmenu'"; # Converted to throw 2022-02-22
|
||||
libdbusmenu_qt5 = throw "'libdbusmenu_qt5' has been renamed to/replaced by 'libsForQt5.libdbusmenu'"; # Converted to throw 2022-02-22
|
||||
libdigidoc = throw "'libdigidoc' is unused in nixpkgs, deprecated and archived by upstream, use 'libdigidocpp' instead"; # Added 2022-06-03
|
||||
liberation_ttf_v1_from_source = throw "'liberation_ttf_v1_from_source' has been renamed to/replaced by 'liberation_ttf_v1'"; # Converted to throw 2022-02-22
|
||||
liberation_ttf_v2_from_source = throw "'liberation_ttf_v2_from_source' has been renamed to/replaced by 'liberation_ttf_v2'"; # Converted to throw 2022-02-22
|
||||
liberationsansnarrow = throw "'liberationsansnarrow' has been renamed to/replaced by 'liberation-sans-narrow'"; # Converted to throw 2022-02-22
|
||||
|
@ -18396,10 +18396,6 @@ with pkgs;
|
||||
|
||||
libdecor = callPackage ../development/libraries/libdecor { };
|
||||
|
||||
libdigidoc = callPackage ../development/libraries/libdigidoc {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
libdigidocpp = callPackage ../development/libraries/libdigidocpp { };
|
||||
|
||||
libdiscid = callPackage ../development/libraries/libdiscid { };
|
||||
|
Loading…
Reference in New Issue
Block a user