mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-14 19:58:30 +01:00
frozen-containers: init at 1.2.0-unstable-2025-07-29
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
parent
689a0c5dad
commit
fe1ba330ea
35
pkgs/by-name/fr/frozen-containers/package.nix
Normal file
35
pkgs/by-name/fr/frozen-containers/package.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
stdenv,
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
cmake,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "frozen-containers";
|
||||||
|
version = "1.2.0-unstable-2025-07-29";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "serge-sans-paille";
|
||||||
|
repo = "frozen";
|
||||||
|
rev = "61dce5ae18ca59931e27675c468e64118aba8744";
|
||||||
|
hash = "sha256-zIczBSRDWjX9hcmYWYkbWY3NAAQwQtKhMTeHlYp4BKk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script {
|
||||||
|
extraArgs = [ "--version=branch" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Header-only library that provides 0 cost initialization for immutable containers, fixed-size containers, and various algorithms";
|
||||||
|
homepage = "https://github.com/serge-sans-paille/frozen";
|
||||||
|
maintainers = with lib.maintainers; [
|
||||||
|
marcin-serwin
|
||||||
|
szanko
|
||||||
|
];
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue