blob: 687a2d2556a9dd5ee3a51245ec301d039fc65c1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
self: super: with self; {
boost_integer = stdenv.mkDerivation rec {
pname = "boost_integer";
version = "1.89.0";
src = fetchFromGitHub {
owner = "boostorg";
repo = "integer";
rev = "boost-${version}";
hash = "sha256-lr90bVhBJIWjYAVTPLrqZI8NpQQnRbWTmJ9sS+yJvbI=";
};
};
}
|