Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at haskell-updates 32 lines 715 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildDunePackage, 5 prelude, 6}: 7 8buildDunePackage rec { 9 pname = "synchronizer"; 10 version = "0.1"; 11 12 minimalOCamlVersion = "5.1"; 13 14 src = fetchFromGitHub { 15 owner = "OCamlPro"; 16 repo = "synchronizer"; 17 tag = version; 18 hash = "sha256-VlKqORXTXafT88GXHIYkz+A1VkEL3jP9SMqDdMyEdrw="; 19 }; 20 21 propagatedBuildInputs = [ 22 prelude 23 ]; 24 25 meta = { 26 homepage = "https://github.com/OCamlPro/synchronizer"; 27 description = "Synchronizer to make datastructures thread-safe"; 28 changelog = "https://raw.githubusercontent.com/OCamlPro/synchronizer/${src.rev}/CHANGES.md"; 29 license = lib.licenses.agpl3Plus; 30 maintainers = with lib.maintainers; [ redianthus ]; 31 }; 32}