tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pspp: 1.4.1 -> 1.6.2
Note: needs ssw >= 0.7
Dilip
2 years ago
401be824
6233fa36
+12
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
math
pspp
default.nix
+12
-7
pkgs/applications/science/math/pspp/default.nix
···
1
{ lib, stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl
2
-
, pkg-config, gtksourceview, pango, gettext, dconf
3
, makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme
4
-
, texinfo, ssw, python3
5
}:
6
7
stdenv.mkDerivation rec {
8
pname = "pspp";
9
-
version = "1.4.1";
10
11
src = fetchurl {
12
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
13
-
sha256 = "0lqrash677b09zxdlxp89z6k02y4i23mbqg83956dwl69wc53dan";
14
};
15
16
nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ];
17
buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl
18
-
gtksourceview pango gettext
19
-
gsettings-desktop-schemas hicolor-icon-theme ssw
20
-
];
0
0
0
0
0
21
22
doCheck = false;
23
···
1
{ lib, stdenv, fetchurl, libxml2, readline, zlib, perl, cairo, gtk3, gsl
2
+
, pkg-config, gtksourceview4, pango, gettext, dconf
3
, makeWrapper, gsettings-desktop-schemas, hicolor-icon-theme
4
+
, texinfo, ssw, python3, iconv
5
}:
6
7
stdenv.mkDerivation rec {
8
pname = "pspp";
9
+
version = "1.6.2";
10
11
src = fetchurl {
12
url = "mirror://gnu/pspp/${pname}-${version}.tar.gz";
13
+
sha256 = "sha256-cylMovWy9/xBu/i3jFiIyAdfQ8YJf9SCq7BPhasIR7Y=";
14
};
15
16
nativeBuildInputs = [ pkg-config texinfo python3 makeWrapper ];
17
buildInputs = [ libxml2 readline zlib perl cairo gtk3 gsl
18
+
gtksourceview4 pango gettext
19
+
gsettings-desktop-schemas hicolor-icon-theme ssw iconv
20
+
];
21
+
22
+
C_INCLUDE_PATH =
23
+
"${libxml2.dev}/include/libxml2/:" +
24
+
lib.makeSearchPathOutput "dev" "include" buildInputs;
25
+
LIBRARY_PATH = lib.makeLibraryPath buildInputs;
26
27
doCheck = false;
28