summary refs log tree commit diff
path: root/pkgs/development/libraries/libfixposix/default.nix
blob: fbb7a709201bbaff3939e397c895b4dba33e8380 (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
{ stdenv, fetchurl, fetchgit, autoreconfHook, libtool }:

stdenv.mkDerivation rec {
  name="libfixposix-${version}";
  version="git-${src.rev}";

  src = fetchgit {
    url = "https://github.com/sionescu/libfixposix";
    rev = "30b75609d858588ea00b427015940351896867e9";
    sha256 = "44553c90d67f839cdd57d14d37d9faa25b1b766f607408896137f3013c1c9424";
  };

  buildInputs = [ autoreconfHook libtool ];

  meta = with stdenv.lib; {
    description = "A set of workarounds for places in POSIX that get implemented differently";
    maintainers = with maintainers;
    [
      raskin
    ];
    platforms = platforms.linux;
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://gitorious.org/libfixposix/libfixposix";
    };
  };
}