mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, yacc, ncurses, libxml2, libzip, libxls, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.7.0";
|
|
pname = "sc-im";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andmarti1424";
|
|
repo = "sc-im";
|
|
rev = "v${version}";
|
|
sha256 = "0xi0n9qzby012y2j7hg4fgcwyly698sfi4i9gkvy0q682jihprbk";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ yacc ncurses libxml2 libzip libxls ];
|
|
|
|
buildPhase = ''
|
|
cd src
|
|
|
|
sed 's/LDLIBS += -lm/& -lncurses/' -i Makefile
|
|
|
|
sed -e "\|^prefix = /usr/local| s|/usr/local|$out|" \
|
|
-e "\|^#LDLIBS += -lxlsreader| s|^#|| " \
|
|
-e "\|^#CFLAGS += -DXLS| s|^#|| " \
|
|
-i Makefile
|
|
|
|
make
|
|
export DESTDIR=$out
|
|
'';
|
|
|
|
installPhase = ''
|
|
make install prefix=
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/andmarti1424/sc-im";
|
|
description = "SC-IM - Spreadsheet Calculator Improvised - SC fork";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|