Compare commits
2 Commits
5285c4cfe2
...
62f3b03628
Author | SHA1 | Date |
---|---|---|
Agatha Lovelace | 62f3b03628 | |
Agatha Lovelace | 0f3b3ebf88 |
|
@ -1,19 +1,29 @@
|
|||
name: "Build legacy Nix package on Ubuntu"
|
||||
on: push
|
||||
name: "Build Nix package on Ubuntu"
|
||||
|
||||
on:
|
||||
push:
|
||||
env:
|
||||
RUSTFLAGS: "-Dwarnings"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: cachix/install-nix-action@v12
|
||||
- uses: actions/checkout@v4
|
||||
- uses: cachix/install-nix-action@v23
|
||||
- name: Building package
|
||||
run: nix-build . -A defaultPackage.x86_64-linux
|
||||
run: nix build
|
||||
- name: Get repository name
|
||||
run: echo "REPO_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV
|
||||
- name: Get commit hash
|
||||
run: echo "COMMIT_HASH=${GITHUB_SHA::6}" >> $GITHUB_ENV
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: url-eater-${{ env.COMMIT_HASH }}-x86_64-linux
|
||||
path: result/bin/url-eater
|
||||
name: ${{ env.REPO_NAME }}-${{ env.COMMIT_HASH }}-x86_64-linux
|
||||
path: result/bin/${{ env.REPO_NAME }}
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: cachix/install-nix-action@v23
|
||||
- name: Lint
|
||||
run: nix develop --command cargo clippy --all-targets --all-features
|
||||
|
|
|
@ -1123,7 +1123,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "url-eater"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"arboard",
|
||||
"knuffel",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "url-eater"
|
||||
version = "0.1.1"
|
||||
version = "0.2.0"
|
||||
edition = "2021"
|
||||
authors = ["Agatha V. Lovelace <agatha@technogothic.net>"]
|
||||
description = "Strip unneeded parameters from URLs copied to clipboard"
|
||||
|
|
|
@ -50,7 +50,7 @@ url-eater.inputs.nixpkgs.follows = "nixpkgs"; #optional
|
|||
```
|
||||
3. Import NixOS module
|
||||
```nix
|
||||
imports = [ url-eater.nixosModule ];
|
||||
imports = [ url-eater.nixosModules.default ];
|
||||
```
|
||||
4. Configure the module:
|
||||
```nix
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
pkgs = import nixpkgs { inherit system; };
|
||||
naersk-lib = pkgs.callPackage naersk { };
|
||||
in {
|
||||
defaultPackage = naersk-lib.buildPackage ./.;
|
||||
devShell = with pkgs;
|
||||
packages.default = naersk-lib.buildPackage ./.;
|
||||
devShells.default = with pkgs;
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
cargo
|
||||
|
@ -25,7 +25,7 @@
|
|||
RUST_SRC_PATH = rustPlatform.rustLibSrc;
|
||||
};
|
||||
}) // {
|
||||
nixosModule = { config, lib, pkgs, ... }:
|
||||
nixosModules.default = { config, lib, pkgs, ... }:
|
||||
with lib;
|
||||
let cfg = config.services.url-eater;
|
||||
in {
|
||||
|
|
Loading…
Reference in New Issue