nixpkgs/pkgs/by-name/pl/platform-folders/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
786 B
Nix
Raw Normal View History

2022-10-24 11:44:16 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, gitUpdater }:
2022-07-28 20:13:54 +00:00
stdenv.mkDerivation rec {
pname = "platform-folders";
version = "4.2.0";
src = fetchFromGitHub {
owner = "sago007";
repo = "PlatformFolders";
rev = version;
hash = "sha256-ruhAP9kjwm6pIFJ5a6oy6VE5W39bWQO3qSrT5IUtiwA=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}"
];
2022-10-24 11:44:16 +00:00
passthru.updateScript = gitUpdater { };
2022-07-28 20:13:54 +00:00
meta = with lib; {
description = "C++ library to look for standard platform directories so that you do not need to write platform-specific code";
homepage = "https://github.com/sago007/PlatformFolders";
license = licenses.mit;
maintainers = [ ];
2022-07-28 20:13:54 +00:00
platforms = platforms.all;
};
}