liburing: 1.0.0pre118_2e719820 -> 1.0.0pre131_b422aa11cc

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-05-28 21:42:40 -05:00
parent 21e2601d2a
commit 63ff37f278
No known key found for this signature in database
GPG Key ID: 25D2038DEB08021D

View File

@ -3,24 +3,25 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "liburing-${version}"; name = "liburing-${version}";
version = "1.0.0pre118_${builtins.substring 0 7 src.rev}"; version = "1.0.0pre131_${builtins.substring 0 7 src.rev}";
src = fetchgit { src = fetchgit {
url = "http://git.kernel.dk/liburing"; url = "http://git.kernel.dk/liburing";
rev = "2e719820d47cdb48308265f95547d2c9458bbfe7"; rev = "b422aa11cc58e9786fa1e343aa2bfa6d7a394445";
sha256 = "0sm2k5f15ad9b9wh928kmbb399f5f7frfh96bi865pklavpcckf5"; sha256 = "0afm0kfhi025m5r0bri8if59m85rwg6kxlkx075lbwg9pw1n75w0";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
outputs = [ "out" "lib" "dev" "man" ]; outputs = [ "out" "lib" "dev" "man" ];
installFlags = configurePhase = ''
[ "prefix=$(out)" ./configure \
"includedir=$(dev)/include" --prefix=$out \
"libdir=$(lib)/lib" --includedir=$dev/include \
"mandir=$(man)/share/man" --libdir=$lib/lib \
]; --mandir=$man/share/man \
'';
# Copy the examples into $out. # Copy the examples into $out.
postInstall = '' postInstall = ''