treewide: cmake buildInputs to nativeBuildInputs, minor cleanups

This commit is contained in:
Ben Siraphob
2021-01-01 11:52:33 +07:00
parent 54ab07c1fe
commit b04fc593e7
212 changed files with 611 additions and 634 deletions
+6 -6
View File
@@ -1,4 +1,4 @@
{stdenv, fetchFromGitHub, cmake} :
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "ddate";
@@ -11,13 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f";
};
buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
meta = {
meta = with stdenv.lib; {
homepage = "https://github.com/bo0ts/ddate";
description = "Discordian version of the date program";
license = stdenv.lib.licenses.publicDomain;
maintainers = with stdenv.lib.maintainers; [ kovirobi ];
platforms = stdenv.lib.platforms.all;
license = licenses.publicDomain;
maintainers = with maintainers; [ kovirobi ];
platforms = platforms.all;
};
}