22 lines
359 B
Nix
22 lines
359 B
Nix
{
|
|
lib,
|
|
buildLinux,
|
|
fetchgit,
|
|
...
|
|
}@args:
|
|
let
|
|
version = "6.19.0";
|
|
modDirVersion = "6.19.0";
|
|
in
|
|
buildLinux (
|
|
args
|
|
//
|
|
{
|
|
inherit version modDirVersion;
|
|
pname = "linux-pinephonepro";
|
|
src = fetchgit {
|
|
url = "https://codeberg.org/megi/linux.git";
|
|
sha256 = "sha256-axwiWkZeMwbpBc1NGqOKk6i3iW3ndVqAtDJi/+ww6wI=";
|
|
};
|
|
}
|
|
)
|