nixpkgs/pkgs/development/libraries/libfixposix/default.nix
2015-11-24 14:45:15 +01:00

29 lines
744 B
Nix

{ 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";
};
};
}