diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-03-06 18:33:03 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-03-06 18:33:03 +0200 |
commit | 0437403c88e2de9aa1a6d2db66b15a59ae8c3a31 (patch) | |
tree | b3c046c728057a1119f1e980570ed9176efaf5d2 | |
parent | af8957f9defc71f3ead13c3300de152d07fea72a (diff) | |
download | firefox-dmenu-integration-0437403c88e2de9aa1a6d2db66b15a59ae8c3a31.tar.gz firefox-dmenu-integration-0437403c88e2de9aa1a6d2db66b15a59ae8c3a31.tar.bz2 firefox-dmenu-integration-0437403c88e2de9aa1a6d2db66b15a59ae8c3a31.zip |
feat(nix): add default.nix
-rw-r--r-- | default.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..4492b0d --- /dev/null +++ b/default.nix @@ -0,0 +1,11 @@ +{pkgs ? import <nixpkgs> { } }: + +pkgs.rustPlatform.buildRustPackage rec { + pname = "firefox-dmenu-integration"; + version = "0.1"; + cargoLock.lockFile = ./Cargo.lock; + src = pkgs.lib.cleanSource ./.; + buildInputs = [ + pkgs.sqlite + ]; +} |