blob: a350035673ed26df92bdbb3d26f1993d65814602 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "2.13.6";
src = fetchFromGitHub {
owner = "pybind";
repo = "pybind11";
rev = "v${version}";
hash = "sha256-SNLdtrOjaC3lGHN9MAqTf51U9EzNKQLyTMNPe0GcdrU=";
};
patches = [];
}
|