summary refs log tree commit diff
path: root/pkgs/tools/misc/gnokii/default.nix
blob: 7ce810a7b56f08f379e985c7c47ccea2006ca65a (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
a :  
let 
  fetchurl = a.fetchurl;

  s = import ./src-for-default.nix; 
  buildInputs = with a; [
    perl intltool gettext libusb
    glib pkgconfig
  ];
in

assert a.stdenv ? glibc;

rec {
  src = a.fetchUrlFromSrcInfo s;

  inherit buildInputs;
  configureFlags = [];

  /* doConfigure should be removed if not needed */
  phaseNames = [ "setDebug" "doConfigure" "doMakeInstall"];

  setDebug = a.fullDepEntry ''
    mkdir -p $out/src
    cp -R * $out/src
    cd $out/src

    export NIX_STRIP_DEBUG=0
    export CFLAGS="-ggdb -O0 -include ${a.stdenv.glibc}/include/locale.h"
    export CXXFLAGS="-ggdb -O0"

  '' [ "minInit" "doUnpack" ];
      
  inherit(s) name;
  meta = {
    description = "Cellphone tool";
    homepage = http://www.gnokii.org;
    maintainers = [a.lib.maintainers.raskin];
    platforms = with a.lib.platforms; linux;
  };
}