tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
fastjet: 3.3.1 -> 3.3.2
Dmitry Kalinkin
7 years ago
b903be77
fb19fb6b
+2
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
physics
fastjet
default.nix
+2
-8
pkgs/development/libraries/physics/fastjet/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "fastjet-${version}";
5
5
-
version = "3.3.1";
5
5
+
version = "3.3.2";
6
6
7
7
src = fetchurl {
8
8
url = "http://fastjet.fr/repo/fastjet-${version}.tar.gz";
9
9
-
sha256 = "0lvchyh9q2p8lb10isazw0wbwzs24yg7gxyhpj9xpvz5hydyvgvn";
9
9
+
sha256 = "1hk3k7dyik640dzg21filpywc2dl862nl2hbpg384hf5pw9syn9z";
10
10
};
11
11
12
12
buildInputs = [ python2 ];
13
13
-
14
14
-
postPatch = ''
15
15
-
substituteInPlace plugins/SISCone/SISConeBasePlugin.cc \
16
16
-
--replace 'structure_of<UserScaleBase::StructureType>()' \
17
17
-
'structure_of<UserScaleBase>()'
18
18
-
'';
19
13
20
14
configureFlags = [
21
15
"--enable-allcxxplugins"