rpm: fix state directory in build

Prior to this change, it was was defaulting to storing its state in
its store path, which didn't make any sense.

Also added myself as a maintainer
This commit is contained in:
Dan Peebles 2016-04-30 02:07:50 +00:00
parent f0189a8b40
commit c048f7db7b

View file

@ -24,13 +24,13 @@ stdenv.mkDerivation rec {
substituteInPlace configure --replace 'python''${PYTHON_VERSION}' ${python.executable}
'';
configureFlags = "--with-external-db --with-lua --enable-python";
configureFlags = "--with-external-db --with-lua --enable-python --localstatedir=/var --sharedstatedir=/com";
meta = with stdenv.lib; {
homepage = http://www.rpm.org/;
license = licenses.gpl2;
description = "The RPM Package Manager";
maintainers = [ maintainers.mornfall ];
maintainers = with maintainers; [ mornfall copumpkin ];
platforms = platforms.linux;
};
}