about summary refs log tree commit diff
path: root/pkgs/development/libraries/ustr/default.nix
blob: ebf9628126e2b06618f5b3d0f8ea61062ef14579 (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
{ stdenv, fetchurl, glibc }:
stdenv.mkDerivation rec {

  name = "ustr-${version}";
  version = "1.0.4";

  src = fetchurl {
    url = "http://www.and.org/ustr/${version}/${name}.tar.bz2";
    sha256 = "1i623ygdj7rkizj7985q9d6vj5amwg686aqb5j3ixpkqkyp6xbrx";
  };
  prePatch = "substituteInPlace Makefile --replace /usr/include/ ${glibc}/include/";

  makeFlags = "DESTDIR=$(out) prefix= LDCONFIG=echo";

  configurePhase = "make ustr-import";
  buildInputs = [ glibc ];

  meta = with stdenv.lib; {
    homepage = http://www.and.org/ustr/;
    description = "Micro String API for C language";
    license = licenses.bsd2;
    maintainers = [ maintainers.phreedom ];
  };
}