Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
654 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation (finaAttrs: {
pname = "scom";
version = "1.2";
src = fetchFromGitHub {
owner = "crash-systems";
repo = "scom";
tag = finaAttrs.version;
hash = "sha256-fFA0s+B94YPDvcPi2GCThcMGcSY6qR1f7x/jP8gXh94=";
};
enableParallelBuilding = true;
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = {
description = "Minimal serial communication tool";
homepage = "https://github.com/crash-systems/scom";
mainProgram = "scom";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ savalet ];
platforms = lib.platforms.unix;
};
})