mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
efivar: Add derivation
This commit is contained in:
parent
8233c1e672
commit
830f3b6b55
28
pkgs/tools/system/efivar/default.nix
Normal file
28
pkgs/tools/system/efivar/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchgit, popt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "efivar-${version}";
|
||||
version = "0.10";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://github.com/vathpela/efivar.git";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "04fznbmrf860b4d4i8rshx3mgwbx06v187wf1rddvxxnpkq8920w";
|
||||
};
|
||||
|
||||
buildInputs = [ popt ];
|
||||
|
||||
installFlags = [
|
||||
"libdir=$(out)/lib"
|
||||
"mandir=$(out)/share/man"
|
||||
"includedir=$(out)/include"
|
||||
"bindir=$(out)/bin"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://github.com/vathpela/efivar;
|
||||
description = "Tools and library to manipulate EFI variables";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21;
|
||||
};
|
||||
}
|
@ -946,6 +946,8 @@ let
|
||||
|
||||
efibootmgr = callPackage ../tools/system/efibootmgr { };
|
||||
|
||||
efivar = callPackage ../tools/system/efivar { };
|
||||
|
||||
elasticsearch = callPackage ../servers/search/elasticsearch { };
|
||||
|
||||
enblendenfuse = callPackage ../tools/graphics/enblend-enfuse {
|
||||
|
Loading…
Reference in New Issue
Block a user