Different interface to triton-vmtools derivation file
This commit is contained in:
parent
7c60da235a
commit
e71abe255c
|
@ -7,7 +7,7 @@
|
|||
outputs = { self, flake-utils, nixpkgs }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
triton-vmtools = import ./pkgs/triton-vmtools.nix { inherit nixpkgs system; };
|
||||
triton-vmtools = import ./pkgs/triton-vmtools.nix { pkgs = import nixpkgs { inherit system; }; };
|
||||
in
|
||||
{
|
||||
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
{ nixpkgs, system, ... }:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
};
|
||||
in with pkgs;
|
||||
{ pkgs, ... }:
|
||||
with pkgs;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "triton-vmtools";
|
||||
version = "0.0.1";
|
||||
|
|
Loading…
Reference in a new issue