xdg-utils-cxx: init at 1.0.1

K900 5dee2fe5 65ae5aa8

Changed files
+30
pkgs
by-name
xd
xdg-utils-cxx
+30
pkgs/by-name/xd/xdg-utils-cxx/package.nix
···
+
{
+
lib,
+
stdenv,
+
fetchFromGitHub,
+
cmake,
+
}:
+
stdenv.mkDerivation rec {
+
pname = "xdg-utils-cxx";
+
version = "1.0.1";
+
+
src = fetchFromGitHub {
+
owner = "azubieta";
+
repo = "xdg-utils-cxx";
+
rev = "v${version}";
+
hash = "sha256-hEN0xqZUNfMOIrw3q+x4kEFhYoqmyn7W3f2w8AGw2wI=";
+
};
+
+
nativeBuildInputs = [
+
cmake
+
];
+
+
meta = with lib; {
+
description = "Implementation of the FreeDesktop specifications to be used in c++ projects";
+
homepage = "https://github.com/azubieta/xdg-utils-cxx";
+
license = licenses.mit;
+
maintainers = with maintainers; [ k900 ];
+
mainProgram = "xdg-utils-cxx";
+
platforms = platforms.linux;
+
};
+
}