Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 04af07c659c6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 51e3b19fc60e
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 14, 2021

  1. Verified

    This commit was signed with the committer’s verified signature.
    Ekleog Léo Gaspard
    Copy the full SHA
    463c111 View commit details
  2. beefi: Init at 0.1.1

    tu-maurice committed Jan 14, 2021
    Copy the full SHA
    85ec1ec View commit details

Commits on Jan 15, 2021

  1. Copy the full SHA
    51e3b19 View commit details
Showing with 52 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +44 −0 pkgs/os-specific/linux/beefi/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -9305,6 +9305,12 @@
githubId = 303489;
name = "Manuel Bärenz";
};
tu-maurice = {
email = "valentin.gehrke+nixpkgs@zom.bi";
github = "tu-maurice";
githubId = 16151097;
name = "Valentin Gehrke";
};
tv = {
email = "tv@krebsco.de";
github = "4z3";
44 changes: 44 additions & 0 deletions pkgs/os-specific/linux/beefi/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ stdenv
, lib
, fetchFromGitHub
, installShellFiles
, binutils-unwrapped
, systemd }:

stdenv.mkDerivation rec {
pname = "beefi";
version = "0.1.1";

src = fetchFromGitHub {
owner = "jfeick";
repo = "beefi";
rev = version;
sha256 = "1180avalbw414q1gnfqdgc9zg3k9y0401kw9qvcn51qph81d04v5";
};

nativeBuildInputs = [ installShellFiles ];

buildInputs = [
binutils-unwrapped
systemd
];

patchPhase = ''
substituteInPlace beefi \
--replace objcopy ${binutils-unwrapped}/bin/objcopy \
--replace /usr/lib/systemd ${systemd}/lib/systemd
'';

installPhase = ''
install -Dm755 beefi $out/bin/beefi
installManPage beefi.1
'';

meta = with lib; {
description = "A small script to create bootable EFISTUB kernel images";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ tu-maurice ];
homepage = "https://github.com/jfeick/beefi";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -18602,6 +18602,8 @@ in

batctl = callPackage ../os-specific/linux/batman-adv/batctl.nix { };

beefi = callPackage ../os-specific/linux/beefi { };

blktrace = callPackage ../os-specific/linux/blktrace { };

bluez5 = callPackage ../os-specific/linux/bluez { };