Compare commits

..

No commits in common. "07adce2449686ba5bdd948b71d0388f959715301" and "a1089b5af7db4f8c87f48a0ee1953b6c41a6c019" have entirely different histories.

2 changed files with 1 additions and 58 deletions

3
.gitignore vendored
View file

@ -1,3 +1,2 @@
/target
private.rs
result
private.rs

View file

@ -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 { }