2018-03-10 11:21:36 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, pkgconfig
|
|
|
|
|
, gtk3
|
2018-08-20 21:31:18 +01:00
|
|
|
|
, pantheon
|
2018-03-10 11:21:36 +00:00
|
|
|
|
, gnome3
|
|
|
|
|
, cmake
|
|
|
|
|
, libqalculate
|
2018-12-02 11:41:15 +00:00
|
|
|
|
, gobject-introspection
|
2018-03-10 11:21:36 +00:00
|
|
|
|
, wrapGAppsHook }:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "nasc-${version}";
|
2018-11-10 13:15:27 +00:00
|
|
|
|
version = "0.5.1";
|
2018-03-10 11:21:36 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "parnold-x";
|
|
|
|
|
repo = "nasc";
|
|
|
|
|
rev = version;
|
2018-11-10 13:15:27 +00:00
|
|
|
|
sha256 = "13y5fnm7g3xgdxmdydlgly73nigh8maqbf9d6c9bpyzxkxq1csy5";
|
2018-03-10 11:21:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-11-10 13:15:27 +00:00
|
|
|
|
postPatch = ''
|
|
|
|
|
# libqalculatenasc.so is not installed, and nasc fails to start
|
|
|
|
|
substituteInPlace libqalculatenasc/CMakeLists.txt --replace SHARED STATIC
|
|
|
|
|
'';
|
|
|
|
|
|
2018-03-10 11:21:36 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
cmake
|
2018-08-20 21:31:18 +01:00
|
|
|
|
pantheon.vala
|
2018-12-02 11:41:15 +00:00
|
|
|
|
gobject-introspection # for setup-hook
|
2018-08-20 21:31:18 +01:00
|
|
|
|
pkgconfig
|
|
|
|
|
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 = [
|
2018-08-20 21:31:18 +01:00
|
|
|
|
pantheon.elementary-icon-theme
|
2018-11-02 20:01:05 +00:00
|
|
|
|
gnome3.gtksourceview
|
2018-03-10 11:21:36 +00:00
|
|
|
|
gnome3.libgee
|
|
|
|
|
gnome3.libsoup
|
2018-08-20 21:31:18 +01:00
|
|
|
|
pantheon.granite
|
2018-11-02 20:01:05 +00:00
|
|
|
|
gtk3
|
|
|
|
|
libqalculate
|
2018-03-10 11:21:36 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
|
description = "Do maths like a normal person";
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
homepage = https://github.com/parnold-x/nasc;
|
|
|
|
|
maintainers = with maintainers; [ samdroid-apps ];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
};
|
|
|
|
|
}
|