mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
22 lines
464 B
Nix
22 lines
464 B
Nix
{ lib, buildNimPackage, fetchFromGitHub }:
|
|
buildNimPackage rec {
|
|
pname = "safeset";
|
|
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "avahe-kellenberger";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ZLdStoNVoQhRkD2iEzKxhs1UPfgnbJM9QCDHdjH7vTU=";
|
|
};
|
|
|
|
|
|
meta = with lib;
|
|
src.meta // {
|
|
description = "safeset library for nim";
|
|
license = [ licenses.gpl2 ];
|
|
maintainers = [ maintainers.marcusramberg ];
|
|
};
|
|
}
|