Compare commits
No commits in common. "0b2ae19085db8dfe0278141bed85acb6ac320533" and "8791b08c4f3ba31d0dd1e9f83f8f01c1a8647b61" have entirely different histories.
0b2ae19085
...
8791b08c4f
3 changed files with 1 additions and 3868 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
/target
|
/target
|
||||||
private.rs
|
private.rs
|
||||||
result
|
|
3810
Cargo.lock
generated
3810
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
56
default.nix
56
default.nix
|
@ -1,56 +0,0 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }: let
|
|
||||||
package = {
|
|
||||||
rustPlatform,
|
|
||||||
nix-gitignore,
|
|
||||||
pkg-config,
|
|
||||||
openssl,
|
|
||||||
glib,
|
|
||||||
gdk-pixbuf,
|
|
||||||
graphene,
|
|
||||||
cairo,
|
|
||||||
pango,
|
|
||||||
gtk4,
|
|
||||||
libsoup_3,
|
|
||||||
libadwaita,
|
|
||||||
webkitgtk_6_0,
|
|
||||||
libseccomp,
|
|
||||||
wrapGAppsHook4,
|
|
||||||
glib-networking,
|
|
||||||
}: rustPlatform.buildRustPackage {
|
|
||||||
pname = "paket";
|
|
||||||
version = "unstable-2024-08-28";
|
|
||||||
|
|
||||||
src = nix-gitignore.gitignoreSource [] ./.;
|
|
||||||
|
|
||||||
cargoLock.lockFile = ./Cargo.lock;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config
|
|
||||||
graphene
|
|
||||||
cairo
|
|
||||||
wrapGAppsHook4
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
# Building
|
|
||||||
openssl
|
|
||||||
glib
|
|
||||||
gdk-pixbuf
|
|
||||||
pango
|
|
||||||
gtk4
|
|
||||||
libsoup_3
|
|
||||||
libadwaita
|
|
||||||
webkitgtk_6_0 # for JSC
|
|
||||||
|
|
||||||
# Linking
|
|
||||||
libseccomp
|
|
||||||
|
|
||||||
# Runtime
|
|
||||||
glib-networking
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
mainProgram = "packet";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in pkgs.callPackage package { }
|
|
Loading…
Reference in a new issue