Skip to content

Commit

Permalink
Merge pull request #10 from Nydragon/improvements
Browse files Browse the repository at this point in the history
Improvements
  • Loading branch information
nydragon authored May 18, 2024
2 parents b30d64b + 8b327e7 commit beafaad
Show file tree
Hide file tree
Showing 10 changed files with 462 additions and 51 deletions.
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use flake
13 changes: 13 additions & 0 deletions .github/workflows/build_nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "Build legacy Nix package on Ubuntu"

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v26
- name: Building package
run: nix build
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@

/target
/result

.direnv
276 changes: 275 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rofi-obsidian"
description = "Launch your Obsidian vaults from the comfort of rofi"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Unlicense"
readme = "README.md"
Expand All @@ -17,7 +17,9 @@ strip = true # Strip symbols from binary*

[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
open = "5.1.2"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
toml = "0.8.13"
url = "2.5.0"
7 changes: 7 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(import (
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2"; }
) {
src = ./.;
}).defaultNix
Loading

0 comments on commit beafaad

Please sign in to comment.