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:
parent
f0189a8b40
commit
c048f7db7b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue