nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 43 lines 762 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6 pkg-config, 7 libuuid, 8 curl, 9 sqlite, 10 openssl, 11}: 12 13stdenv.mkDerivation { 14 pname = "scitokens-cpp"; 15 version = "1.2.0"; 16 17 src = fetchFromGitHub { 18 owner = "scitokens"; 19 repo = "scitokens-cpp"; 20 21 rev = "v1.2.0"; 22 hash = "sha256-Sc3+g2MMxVnPNI4V/f8Ss8Z3SOQScC9fj8woJDm2O/A="; 23 }; 24 25 nativeBuildInputs = [ 26 cmake 27 pkg-config 28 ]; 29 buildInputs = [ 30 libuuid 31 openssl 32 curl 33 sqlite 34 ]; 35 36 meta = { 37 homepage = "https://github.com/scitokens/scitokens-cpp/"; 38 description = "C++ implementation of the SciTokens library with a C library interface"; 39 platforms = lib.platforms.unix; 40 license = lib.licenses.asl20; 41 maintainers = with lib.maintainers; [ evey ]; 42 }; 43}