summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/algorithm/.yandex_meta/default.nix
blob: cd87223920e786fec7b23d84f077d096caa295c2 (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.88.0";

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