mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
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:
parent
bb510a6ac6
commit
3b2f5d4af3
33
packages/pinephone-toolkit.nix
Normal file
33
packages/pinephone-toolkit.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user