flakes: Migrate the config and miku to flakes
This commit is contained in:
@@ -1,4 +1,10 @@
|
||||
{ pkgs, lib, python3Packages, python3, gtk3, gobject-introspection, git, wrapGAppsHook, gnome }:
|
||||
{
|
||||
pkgs, lib
|
||||
, python3Packages, python3
|
||||
, gtk3, gobject-introspection, gnome
|
||||
, wrapGAppsHook
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "vfio-isolate";
|
||||
@@ -9,9 +15,11 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
patches = [ ./remove-versions.patch ];
|
||||
|
||||
src = builtins.fetchGit {
|
||||
url = "https://github.com/spheenik/vfio-isolate.git";
|
||||
ref = "master";
|
||||
src = fetchFromGitHub {
|
||||
owner = "spheenik";
|
||||
repo = "vfio-isolate";
|
||||
rev = "master";
|
||||
sha256 = "0n85bmaj79i97j19wrn3z4hmg93p2rrsb3jk1qfd0107agx8mr3k";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
Reference in New Issue
Block a user