blob: f8e9544d6ffa518c8d579db567bd046ed13810c6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
self: super: with self; {
boost_multi_array = stdenv.mkDerivation rec {
pname = "boost_multi_array";
version = "1.88.0";
src = fetchFromGitHub {
owner = "boostorg";
repo = "multi_array";
rev = "boost-${version}";
hash = "sha256-oG70CtBohtcka45hXehFHlpoThZiYlbKJtDtkB1p0O4=";
};
};
}
|