diff --git a/pkgs/development/tools/misc/dbench/default.nix b/pkgs/development/tools/misc/dbench/default.nix index de368aa0d91..ce3511f0f7e 100644 --- a/pkgs/development/tools/misc/dbench/default.nix +++ b/pkgs/development/tools/misc/dbench/default.nix @@ -1,22 +1,29 @@ -{stdenv, fetchgit, autoconf, popt, zlib}: +{ stdenv, fetchgit, autoconf, popt, zlib }: stdenv.mkDerivation rec { name = "dbench-2013-01-01"; - buildInputs = [autoconf popt zlib]; - - preConfigure = '' - ./autogen.sh - ''; - src = fetchgit { url = git://git.samba.org/sahlberg/dbench.git; rev = "65b19870ed8d25bff14cafa1c30beb33f1fb6597"; sha256 = "0hzn7xr58y7f01hp02d0ciy2n5awskypfbdc56ff1vkr1b12i2p9"; }; + buildInputs = [ autoconf popt zlib ]; + + preConfigure = '' + ./autogen.sh + ''; + postInstall = '' cp -R loadfiles/* $out/share ''; + meta = with stdenv.lib; { + description = "Filesystem benchmark tool based on load patterns"; + homepage = https://dbench.samba.org/; + license = licenses.gpl3; + platforms = platforms.all; + maintainers = [ maintainers.bjornfor ]; + }; }