mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 04:58:49 +03:00
Remove nix script which was unmaintained
This commit is contained in:
parent
e9a8e51208
commit
d0e31c43a6
3 changed files with 0 additions and 30 deletions
12
README.md
12
README.md
|
@ -222,18 +222,6 @@ cmake --build build
|
||||||
|
|
||||||
The `nheko` binary will be located in the `build` directory.
|
The `nheko` binary will be located in the `build` directory.
|
||||||
|
|
||||||
#### Nix
|
|
||||||
|
|
||||||
Download the repo as mentioned above and run
|
|
||||||
|
|
||||||
```bash
|
|
||||||
nix-build
|
|
||||||
```
|
|
||||||
|
|
||||||
in the project folder. This will output a binary to `result/bin/nheko`.
|
|
||||||
|
|
||||||
You can also install nheko by running `nix-env -f . -i`
|
|
||||||
|
|
||||||
#### Windows
|
#### Windows
|
||||||
|
|
||||||
After installing all dependencies, you need to edit the `CMakeSettings.json` to
|
After installing all dependencies, you need to edit the `CMakeSettings.json` to
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
with import <nixpkgs> {};
|
|
||||||
libsForQt5.callPackage ./package.nix {}
|
|
||||||
|
|
15
package.nix
15
package.nix
|
@ -1,15 +0,0 @@
|
||||||
{ stdenv, qtbase, qttranslations, qtmultimedia, lmdb, cmake }:
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
version = "0.5.2";
|
|
||||||
name = "nheko-${version}";
|
|
||||||
src = builtins.filterSource
|
|
||||||
(path: type:
|
|
||||||
let name = baseNameOf path;
|
|
||||||
in !((type == "directory" && (name == ".git" || name == "build")) ||
|
|
||||||
(type == "symlink" && name == "result") ))
|
|
||||||
./.;
|
|
||||||
nativeBuildInputs = [ cmake ];
|
|
||||||
buildInputs = [ qtbase qttranslations qtmultimedia lmdb ];
|
|
||||||
installPhase = "install -Dm755 nheko $out/bin/nheko";
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue