depot/pkgs/by-name/xd/xdg-utils-cxx/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

30 lines
667 B
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;
};
}