nixpkgs/pkgs/applications/misc/sc-im/default.nix

39 lines
904 B
Nix
Raw Normal View History

2017-01-03 12:34:23 +01:00
{ stdenv, fetchFromGitHub, yacc, ncurses, libxml2, pkgconfig }:
2015-03-01 14:37:28 +01:00
stdenv.mkDerivation rec {
2017-01-03 12:34:23 +01:00
version = "0.4.0";
name = "sc-im-${version}";
2015-03-01 14:37:28 +01:00
src = fetchFromGitHub {
owner = "andmarti1424";
repo = "sc-im";
rev = "v${version}";
2017-01-03 12:34:23 +01:00
sha256 = "1v1cfmfqs5997bqlirp6p7smc3qrinq8dvsi33sk09r33zkzyar0";
2015-03-01 14:37:28 +01:00
};
2017-01-03 12:34:23 +01:00
buildInputs = [ yacc ncurses libxml2 pkgconfig ];
2015-03-01 14:37:28 +01:00
buildPhase = ''
cd src
2017-01-03 12:34:23 +01:00
sed -i "s,prefix=/usr,prefix=$out," Makefile
sed -i "s,-I/usr/include/libxml2,-I$libxml2," Makefile
2015-03-01 14:37:28 +01:00
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 = [ maintainers.matthiasbeyer ];
platforms = platforms.linux; # Cannot test others
2015-03-01 14:37:28 +01:00
};
}