Remove nix script which was unmaintained

This commit is contained in:
Konstantinos Sideris 2018-08-31 18:52:26 +03:00
parent e9a8e51208
commit d0e31c43a6
3 changed files with 0 additions and 30 deletions

View File

@ -222,18 +222,6 @@ cmake --build build
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
After installing all dependencies, you need to edit the `CMakeSettings.json` to

View File

@ -1,3 +0,0 @@
with import <nixpkgs> {};
libsForQt5.callPackage ./package.nix {}

View File

@ -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";
}