nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

span-lite: init at 0.10.3

+31
+29
pkgs/development/libraries/span-lite/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "span-lite"; 9 + version = "0.10.3"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "martinmoene"; 13 + repo = "span-lite"; 14 + rev = "v${version}"; 15 + hash = "sha256-WfoyyPLBqXSGGATWN/wny6P++3aCmQMOMLCARhB+R3c="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + cmake 20 + ]; 21 + 22 + meta = { 23 + description = "A C++20-like span for C++98, C++11 and later in a single-file header-only library"; 24 + homepage = "https://github.com/martinmoene/span-lite"; 25 + license = lib.licenses.bsd1; 26 + maintainers = with lib.maintainers; [ icewind1991 ]; 27 + platforms = lib.platforms.all; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 23360 23360 23361 23361 soundtouch = callPackage ../development/libraries/soundtouch {}; 23362 23362 23363 + span-lite = callPackage ../development/libraries/span-lite { }; 23364 + 23363 23365 spandsp = callPackage ../development/libraries/spandsp {}; 23364 23366 spandsp3 = callPackage ../development/libraries/spandsp/3.nix {}; 23365 23367