2-13-25 update
This commit is contained in:
2272
overlay/pkgs/lash/Cargo.lock
generated
Normal file
2272
overlay/pkgs/lash/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
22
overlay/pkgs/lash/package.nix
Normal file
22
overlay/pkgs/lash/package.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.rustPlatform.buildRustPackage rec {
|
||||
pname = "lash";
|
||||
version = "v0.5.0_5c038fb";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "pagedMov";
|
||||
repo = "lash";
|
||||
rev = "5c038fbb569fdad802f22fa0bd5ca9a839dcaed8";
|
||||
hash = "sha256-AGItl4LN8hWqcNmE6d9snIkaV/FZKKD58e2pf7A22UA=";
|
||||
};
|
||||
|
||||
|
||||
doCheck = false; # TODO: Find a way to make tests work
|
||||
|
||||
cargoLock.lockFile = ./Cargo.lock;
|
||||
|
||||
passthru = {
|
||||
shellPath = "/bin/lash";
|
||||
};
|
||||
}
|
||||
29
overlay/pkgs/lash/update_lash.sh
Executable file
29
overlay/pkgs/lash/update_lash.sh
Executable file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export GIT_SSH_COMMAND="ssh -F /dev/null"
|
||||
|
||||
curl -O https://raw.githubusercontent.com/pagedMov/lash/refs/heads/master/Cargo.lock
|
||||
NEW_SRC=$(fetchfromgh pagedMov/lash)
|
||||
|
||||
REV_SHORT=$(git ls-remote git@github.com:pagedMov/lash.git HEAD | awk '{print substr($1, 1, 7)}')
|
||||
CUR_TAG=$(git ls-remote --tags git@github.com:pagedMov/lash.git | tail -n 2 | head -n 1 | cut -f2 | cut -d'/' -f3)
|
||||
NEW_VER="${CUR_TAG}_$REV_SHORT"
|
||||
|
||||
cat <<EOF
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.rustPlatform.buildRustPackage rec {
|
||||
pname = "lash";
|
||||
version = "$NEW_VER";
|
||||
|
||||
$NEW_SRC
|
||||
|
||||
doCheck = false; # TODO: Find a way to make tests work
|
||||
|
||||
cargoLock.lockFile = ./Cargo.lock;
|
||||
|
||||
passthru = {
|
||||
shellPath = "/bin/lash";
|
||||
};
|
||||
}
|
||||
EOF
|
||||
Reference in New Issue
Block a user