mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
devdash: remove
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
parent
9594282483
commit
007d3e9c63
2 changed files with 1 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildGo122Module,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
coreutils,
|
||||
}:
|
||||
|
||||
buildGo122Module rec {
|
||||
pname = "devdash";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Phantas0s";
|
||||
repo = "devdash";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-RUPpgMVl9Cm8uhztdfKnuQ6KdMn9m9PewlT59NnTSiY=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-xuc8rAkyCInNFxs5itwabqBe4CPg/sAuhcTJsapx7Q8=";
|
||||
|
||||
ldflags = [
|
||||
"-s -w"
|
||||
"-X github.com/Phantas0s/devdash/cmd.current=${version}"
|
||||
"-X github.com/Phantas0s/devdash/cmd.buildDate=1970-01-01-00:00:01"
|
||||
];
|
||||
|
||||
patchPhase = ''
|
||||
runHook prePatch
|
||||
|
||||
shopt -s globstar
|
||||
substituteInPlace **/*.go --replace '"/bin/' '"/usr/bin/env '
|
||||
shopt -u globstar
|
||||
|
||||
runHook postPatch
|
||||
'';
|
||||
|
||||
runtimeDependencies = [
|
||||
coreutils
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Highly configurable terminal dashboard for developers and creators";
|
||||
homepage = "https://github.com/Phantas0s/devdash";
|
||||
changelog = "https://github.com/Phantas0s/devdash/blob/v${version}/CHANGELOG.md";
|
||||
maintainers = with lib.maintainers; [ h7x4 ];
|
||||
license = lib.licenses.asl20;
|
||||
mainProgram = "devdash";
|
||||
};
|
||||
}
|
|
@ -493,6 +493,7 @@ mapAliases {
|
|||
deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
|
||||
|
||||
demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18
|
||||
devdash = throw "'devdash' has been removed as the upstream project was archived"; # Added 2025-03-27
|
||||
dgsh = throw "'dgsh' has been removed, as it was broken and unmaintained"; # added 2024-05-09
|
||||
dibbler = throw "dibbler was removed because it is not maintained anymore"; # Added 2024-05-14
|
||||
dillong = throw "'dillong' has been removed, as upstream is abandoned since 2021-12-13. Use either 'dillo' or 'dillo-plus'. The latter integrates features from dillong."; # Added 2024-10-07
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue