mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
a3ac12aca9
Most of these are unused and the others only used in 1.59.
11 lines
269 B
Nix
11 lines
269 B
Nix
{ stdenv, callPackage, fetchurl, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "1.59.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/boost/boost_1_59_0.tar.bz2";
|
|
sha256 = "1jj1aai5rdmd72g90a3pd8sw9vi32zad46xv5av8fhnr48ir6ykj";
|
|
};
|
|
})
|