packages: Add pinephone-toolkit for now

Should be able to eventually replace this with something that aligns
more to my use case.
This commit is contained in:
Donovan Glover 2024-07-20 10:52:23 -04:00
parent bb510a6ac6
commit 3b2f5d4af3
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -0,0 +1,33 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
}:
stdenv.mkDerivation {
name = "pinephone-toolkit";
version = "0-unstable-2021-03-22";
src = fetchFromGitHub {
owner = "Dejvino";
repo = "pinephone-toolkit";
rev = "0107cf984fe5d04dc876a18139cc0c52d6bd6046";
hash = "sha256-jANYWAKBKvDGUDDCcqKplyJ1LZDigGvQkN0melWFpzo=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
meta = {
description = "Tools and utilities for the PINE64 PinePhone";
homepage = "https://github.com/Dejvino/pinephone-toolkit";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ donovanglover ];
platforms = lib.platforms.linux;
};
}