mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 18:21:41 +03:00
bootlogd: Init at 2020-01-02
This commit is contained in:
parent
b932adb0d2
commit
50849b0598
23
overlay/bootlogd/default.nix
Normal file
23
overlay/bootlogd/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "bootlogd";
|
||||
version = "2020-02-02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mobile-nixos";
|
||||
repo = "bootlogd";
|
||||
rev = "e5af793da15def578eb3b25cb2c02196267021b1";
|
||||
sha256 = "0m6y1369xs8hds66q5z2bxd80vxwnkqsnppmkfqk6i1d2259i903";
|
||||
};
|
||||
|
||||
sourceRoot = "source/src";
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
@ -58,6 +58,7 @@ in
|
||||
|
||||
make_ext4fs = callPackage ./make_ext4fs {};
|
||||
hardshutdown = callPackage ./hardshutdown {};
|
||||
bootlogd = callPackage ./bootlogd {};
|
||||
|
||||
#
|
||||
# Hacks
|
||||
|
Loading…
Reference in New Issue
Block a user