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