Skip to content

cull-os/carcass

Repository files navigation

Carcass

The Cull monorepository.

Projects

  • cab: A reproducible contextful-expression language.

Contributing

All contributors must follow the Code of Conduct.

License

This project is subject to the terms of the Immutable Software License, edition ee1e96f741ba9e18.

You can verify the notice's integrity using this POSIX shell script:

verify() {
  hash="$1";
  file="$2";

  [ $(sed "s/$hash/HASH-PLACEHOLDER/g" "$file" | sha256sum | head --bytes 16) = "$hash" ] && echo SUCCESS || echo FAIL;
}

Or this Nushell script:

def verify [ hash: string, file: path ]: nothing -> nothing {
  open $file
  | str replace --all $hash "HASH-PLACEHOLDER"
  | hash sha256
  | str substring 0..<16
  | print (if $in == $hash {
    "SUCCESS"
  } else {
    "FAIL"
  })
}

And then by running verify <edition-noted-above> LICENSE.md

About

The Cull monorepository.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Contributors 2

  •  
  •