2021-01-11 07:54:33 +00:00
|
|
|
|
{ lib, stdenv
|
2018-03-10 11:21:36 +00:00
|
|
|
|
, fetchFromGitHub
|
2021-01-19 06:50:56 +00:00
|
|
|
|
, pkg-config
|
2021-01-09 20:59:35 +00:00
|
|
|
|
, fetchpatch
|
2020-08-31 18:50:12 +01:00
|
|
|
|
, python3
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
2019-10-10 03:47:37 +01:00
|
|
|
|
, vala
|
2018-03-10 11:21:36 +00:00
|
|
|
|
, gtk3
|
2019-03-21 02:53:41 +00:00
|
|
|
|
, glib
|
2018-08-20 21:31:18 +01:00
|
|
|
|
, pantheon
|
2019-03-21 02:53:41 +00:00
|
|
|
|
, libsoup
|
2019-02-13 21:47:50 +00:00
|
|
|
|
, gtksourceview
|
|
|
|
|
, libgee
|
2020-08-31 18:50:12 +01:00
|
|
|
|
, nix-update-script
|
|
|
|
|
, webkitgtk
|
2018-03-10 11:21:36 +00:00
|
|
|
|
, libqalculate
|
2020-08-31 18:50:12 +01:00
|
|
|
|
, intltool
|
|
|
|
|
, gnuplot
|
2019-03-21 02:53:41 +00:00
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
}:
|
2018-03-10 11:21:36 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-21 02:53:41 +00:00
|
|
|
|
pname = "nasc";
|
2020-08-31 18:50:12 +01:00
|
|
|
|
version = "0.7.5";
|
2018-03-10 11:21:36 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "parnold-x";
|
2019-03-21 02:53:41 +00:00
|
|
|
|
repo = pname;
|
2018-03-10 11:21:36 +00:00
|
|
|
|
rev = version;
|
2020-08-31 18:50:12 +01:00
|
|
|
|
sha256 = "kSRc5RLkI6SBJirUYw6swZi8IJhaL3y74b2Zw8kh2XA=";
|
|
|
|
|
fetchSubmodules = true;
|
2018-03-10 11:21:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-09 20:59:35 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# fix compilation with gcc10
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://github.com/parnold-x/libqalculate/commit/4fa8f2cceada128ef19f82407226b2c230b780d5.patch";
|
|
|
|
|
extraPrefix = "subprojects/libqalculate/";
|
|
|
|
|
stripLen = "1";
|
|
|
|
|
sha256 = "0kbff623zl0s6yx5avx068f2apwzxzvihjahja4qhlkqkhhzj9dm";
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
|
2018-03-10 11:21:36 +00:00
|
|
|
|
nativeBuildInputs = [
|
2020-08-31 18:50:12 +01:00
|
|
|
|
glib # post_install.py
|
|
|
|
|
gtk3 # post_install.py
|
|
|
|
|
intltool # for libqalculate
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
|
pkg-config
|
2020-08-31 18:50:12 +01:00
|
|
|
|
python3
|
|
|
|
|
vala
|
2018-08-20 21:31:18 +01:00
|
|
|
|
wrapGAppsHook
|
2018-03-10 11:21:36 +00:00
|
|
|
|
];
|
2018-11-10 13:15:27 +00:00
|
|
|
|
|
2018-03-10 11:21:36 +00:00
|
|
|
|
buildInputs = [
|
2019-03-21 02:53:41 +00:00
|
|
|
|
glib
|
2020-08-31 18:50:12 +01:00
|
|
|
|
gtk3
|
2019-02-13 21:47:50 +00:00
|
|
|
|
gtksourceview
|
|
|
|
|
libgee
|
2019-03-21 02:53:41 +00:00
|
|
|
|
pantheon.elementary-icon-theme
|
|
|
|
|
pantheon.granite
|
2020-08-31 18:50:12 +01:00
|
|
|
|
webkitgtk
|
|
|
|
|
# We add libqalculate's runtime dependencies because nasc has it as a modified subproject.
|
|
|
|
|
] ++ libqalculate.buildInputs ++ libqalculate.propagatedBuildInputs;
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
chmod +x meson/post_install.py
|
|
|
|
|
patchShebangs meson/post_install.py
|
|
|
|
|
|
|
|
|
|
# patch subproject. same code in libqalculate expression
|
|
|
|
|
substituteInPlace subprojects/libqalculate/libqalculate/Calculator-plot.cc \
|
|
|
|
|
--replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \
|
|
|
|
|
--replace '"gnuplot - ' '"${gnuplot}/bin/gnuplot - '
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
passthru = {
|
2020-08-31 18:53:25 +01:00
|
|
|
|
updateScript = nix-update-script {
|
2020-08-31 18:50:12 +01:00
|
|
|
|
attrPath = pname;
|
|
|
|
|
};
|
|
|
|
|
};
|
2018-03-10 11:21:36 +00:00
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
|
meta = with lib; {
|
2020-08-31 18:50:12 +01:00
|
|
|
|
description = "Do maths like a normal person, designed for elementary OS";
|
2018-03-10 11:21:36 +00:00
|
|
|
|
longDescription = ''
|
|
|
|
|
It’s an app where you do maths like a normal person. It lets you
|
|
|
|
|
type whatever you want and smartly figures out what is math and
|
|
|
|
|
spits out an answer on the right pane. Then you can plug those
|
|
|
|
|
answers in to future equations and if that answer changes, so does
|
|
|
|
|
the equations it’s used in.
|
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://github.com/parnold-x/nasc";
|
2020-08-31 18:50:12 +01:00
|
|
|
|
maintainers = pantheon.maintainers;
|
2018-03-10 11:21:36 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
};
|
|
|
|
|
}
|