tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lrcalc: 1.2 -> 2.1
Mauricio Collares
3 years ago
09ab2aba
fb222e00
+2
-12
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
lrcalc
default.nix
+2
-12
pkgs/applications/science/math/lrcalc/default.nix
···
1
1
{ lib, stdenv
2
2
, fetchFromBitbucket
3
3
-
, fetchpatch
4
3
, autoreconfHook
5
4
}:
6
5
7
6
stdenv.mkDerivation rec {
8
8
-
version = "1.2";
7
7
+
version = "2.1";
9
8
pname = "lrcalc";
10
9
11
10
src = fetchFromBitbucket {
12
11
owner = "asbuch";
13
12
repo = "lrcalc";
14
13
rev = "lrcalc-${version}";
15
15
-
sha256 = "1c12d04jdyxkkav4ak8d1aqrv594gzihwhpxvc6p9js0ry1fahss";
14
14
+
sha256 = "0s3amf3z75hnrjyszdndrvk4wp5p630dcgyj341i6l57h43d1p4k";
16
15
};
17
16
18
17
doCheck = true;
19
18
20
19
nativeBuildInputs = [
21
20
autoreconfHook
22
22
-
];
23
23
-
24
24
-
patches = [
25
25
-
# Fix include syntax:
26
26
-
# For private includes, use `#include "..."` instead of `#include <...>`
27
27
-
(fetchpatch {
28
28
-
url = "https://bitbucket.org/asbuch/lrcalc/commits/226981a0/raw/";
29
29
-
sha256 = "02kaqx5s3l642rhh28kn2wg9wr098vzpknxyl4pv627lqa3lv9vm";
30
30
-
})
31
21
];
32
22
33
23
meta = with lib; {