removed depricated shell.nix
This commit is contained in:
parent
4348380bc6
commit
67580be746
1 changed files with 0 additions and 32 deletions
32
shell.nix
32
shell.nix
|
|
@ -1,32 +0,0 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> { };
|
||||
|
||||
libraries = with pkgs;[
|
||||
webkitgtk
|
||||
gtk3
|
||||
cairo
|
||||
gdk-pixbuf
|
||||
glib
|
||||
dbus
|
||||
openssl_3
|
||||
];
|
||||
|
||||
packages = with pkgs; [
|
||||
pkg-config
|
||||
dbus
|
||||
openssl_3
|
||||
glib
|
||||
gtk3
|
||||
libsoup
|
||||
webkitgtk
|
||||
appimagekit
|
||||
];
|
||||
in
|
||||
pkgs.mkShell {
|
||||
buildInputs = packages;
|
||||
|
||||
shellHook =
|
||||
''
|
||||
export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath libraries}:$LD_LIBRARY_PATH
|
||||
'';
|
||||
}
|
||||
Reference in a new issue