summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/algorithm/.yandex_meta/default.nix
blob: 763a4f86fa135dee37bc38194ee21737d38f30e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
self: super: with self; {
  boost_algorithm = stdenv.mkDerivation rec {
    pname = "boost_algorithm";
    version = "1.89.0";

    src = fetchFromGitHub {
      owner = "boostorg";
      repo = "algorithm";
      rev = "boost-${version}";
      hash = "sha256-+rnClgwIlt25oJ0MVzjaJn3N7eD3QXi0rf0v+cZDgvw=";
    };
  };
}