mirror of
https://github.com/nix-community/disko
synced 2024-11-15 00:27:07 +00:00
Merge pull request #795 from Jayman2000/binlore-for-disko-commands
This commit is contained in:
commit
c61e50b63a
1 changed files with 34 additions and 27 deletions
13
package.nix
13
package.nix
|
@ -1,6 +1,7 @@
|
|||
{ stdenvNoCC, makeWrapper, lib, path, nix, coreutils, nixos-install-tools }:
|
||||
{ stdenvNoCC, makeWrapper, lib, path, nix, coreutils, nixos-install-tools, binlore }:
|
||||
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
let
|
||||
self = stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
name = "disko";
|
||||
src = ./.;
|
||||
nativeBuildInputs = [
|
||||
|
@ -18,6 +19,11 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||
--prefix NIX_PATH : "nixpkgs=${path}"
|
||||
done
|
||||
'';
|
||||
# Otherwise resholve thinks that disko and disko-install might be able to execute their arguments
|
||||
passthru.binlore.out = binlore.synthesize self ''
|
||||
execer cannot bin/.disko-wrapped
|
||||
execer cannot bin/.disko-install-wrapped
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Format disks with nix-config";
|
||||
homepage = "https://github.com/nix-community/disko";
|
||||
|
@ -26,4 +32,5 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
|||
platforms = platforms.linux;
|
||||
mainProgram = finalAttrs.name;
|
||||
};
|
||||
})
|
||||
});
|
||||
in self
|
||||
|
|
Loading…
Reference in a new issue