about summary refs log tree commit diff
path: root/pkgs/applications/misc/sc-im/default.nix
blob: cb18278d1ed4b22d2c74dc0a1d0b5f6ff38d0224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv, fetchFromGitHub, yacc, ncurses, libxml2 }:

let
  version = "0.2.1";
in
stdenv.mkDerivation rec {

  name = "sc-im-${version}";

  src = fetchFromGitHub {
    owner = "andmarti1424";
    repo = "sc-im";
    rev = "v${version}";
    sha256 = "0v6b8xksvd12vmz198vik2ranyr5mhnp85hl9yxh9svibs7jxsbb";
  };

  buildInputs = [ yacc ncurses libxml2 ];

  buildPhase = ''
    cd src

    sed "s,prefix=/usr,prefix=$out," Makefile
    sed "s,-I/usr/include/libxml2,-I$libxml2," 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 = [ maintainers.matthiasbeyer ];
    platforms = platforms.linux; # Cannot test others
  };

}