mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
58 lines
1,004 B
Nix
58 lines
1,004 B
Nix
{ lib
|
|
, nixosTests
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, inih
|
|
, libdrm
|
|
, libinput
|
|
, libxkbcommon
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, scdoc
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "unl0kr";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.com";
|
|
owner = "cherrypicker";
|
|
repo = "unl0kr";
|
|
rev = finalAttrs.version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-KPP4Ol1GCAWqdQYlNtKQD/jx8A/xuHdvKjcocPMqWa0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
scdoc
|
|
];
|
|
|
|
buildInputs = [
|
|
inih
|
|
libdrm
|
|
libinput
|
|
libxkbcommon
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libxkbcommon
|
|
];
|
|
|
|
passthru = {
|
|
tests.unl0kr = nixosTests.systemd-initrd-luks-unl0kr;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Framebuffer-based disk unlocker for the initramfs based on LVGL";
|
|
mainProgram = "unl0kr";
|
|
homepage = "https://gitlab.com/cherrypicker/unl0kr";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|