nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 fetchurl,
4 buildDunePackage,
5}:
6
7buildDunePackage (finalAttrs: {
8 pname = "opti";
9 version = "1.0.3";
10
11 src = fetchurl {
12 url = "https://github.com/magnusjonsson/opti/releases/download/${finalAttrs.version}/opti-${finalAttrs.version}.tbz";
13 hash = "sha256-7ZulbcBunSsb8JeWTMZeo323h9TyOcE9DddGk/W1Ch4=";
14 };
15
16 meta = {
17 description = "DSL to generate fast incremental C code from declarative specifications";
18 license = lib.licenses.bsd3;
19 maintainers = [ lib.maintainers.jmagnusj ];
20 homepage = "https://github.com/magnusjonsson/opti";
21 };
22})