cleaned up flake file
This commit is contained in:
parent
7f682b82d5
commit
adca02ef27
1 changed files with 28 additions and 27 deletions
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
libgourou-utils.url = "github:BentonEdmondson/libgourou-utils";
|
libgourou-utils.url = "github:BentonEdmondson/libgourou-utils";
|
||||||
|
@ -19,11 +18,14 @@
|
||||||
pname = "knock";
|
pname = "knock";
|
||||||
version = "0.1.0-alpha";
|
version = "0.1.0-alpha";
|
||||||
src = self;
|
src = self;
|
||||||
|
|
||||||
nativeBuildInputs = [ nixpkgs.makeWrapper ];
|
nativeBuildInputs = [ nixpkgs.makeWrapper ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(nixpkgs.python3.withPackages(python3Packages: [ python3Packages.python_magic ]))
|
(nixpkgs.python3.withPackages(python3Packages: [ python3Packages.python_magic ]))
|
||||||
libgourou-utils inept-epub
|
libgourou-utils inept-epub
|
||||||
];
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
chmod +x knock
|
chmod +x knock
|
||||||
|
@ -43,6 +45,5 @@
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue