Compare commits
No commits in common. "07adce2449686ba5bdd948b71d0388f959715301" and "a1089b5af7db4f8c87f48a0ee1953b6c41a6c019" have entirely different histories.
07adce2449
...
a1089b5af7
2 changed files with 1 additions and 58 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
/target
|
||||
private.rs
|
||||
result
|
||||
|
|
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 [] ./.;
|
||||
|
||||
cargoHash = "sha256-RYXnXQZZV01g65EB66LpltI7K2+O5AoqdECKPin7aDc=";
|
||||
|
||||
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