nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 656 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5}: 6stdenv.mkDerivation (finaAttrs: { 7 pname = "scom"; 8 version = "1.2.3"; 9 10 src = fetchFromGitHub { 11 owner = "crash-systems"; 12 repo = "scom"; 13 tag = finaAttrs.version; 14 hash = "sha256-eFnCXMrks5V6o+0+vMjR8zaCdkc+hC3trSS+pOh4Y6U="; 15 }; 16 17 enableParallelBuilding = true; 18 19 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 20 21 meta = { 22 description = "Minimal serial communication tool"; 23 homepage = "https://github.com/crash-systems/scom"; 24 mainProgram = "scom"; 25 license = lib.licenses.gpl3Plus; 26 maintainers = with lib.maintainers; [ savalet ]; 27 platforms = lib.platforms.unix; 28 }; 29})