From e3e7eed22cf5f2db558477a0dfdd90e81e038122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 21 Dec 2021 18:49:02 +0100 Subject: treewide: move packages to subdirectory --- pkgs/libraries/base64c/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pkgs/libraries/base64c/default.nix (limited to 'pkgs/libraries/base64c') diff --git a/pkgs/libraries/base64c/default.nix b/pkgs/libraries/base64c/default.nix new file mode 100644 index 0000000..ec89a4b --- /dev/null +++ b/pkgs/libraries/base64c/default.nix @@ -0,0 +1,22 @@ +{ stdenv, lib, fetchgit +, bootstrapHook, pkg-config +}: + +stdenv.mkDerivation rec { + pname = "base64c"; + version = "0.2.1"; + meta = with lib; { + homepage = "https://gitlab.nic.cz/turris/base64c"; + description = "Base64 encoding/decoding library for C"; + platforms = with platforms; linux; + license = licenses.mit; + }; + + src = fetchgit { + url = "https://gitlab.nic.cz/turris/base64c.git"; + rev = "v" + version; + sha256 = "09qgx2qcni6cmk9mwiis843wgp3f85mh2c3sm0w37ib0bcxdvq7x"; + }; + + nativeBuildInputs = [bootstrapHook pkg-config]; +} -- cgit v1.2.3