nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 25 lines 636 B view raw
1{ 2 lib, 3 buildDunePackage, 4 fetchurl, 5}: 6 7buildDunePackage (finalAttrs: { 8 pname = "semaphore-compat"; 9 version = "1.0.2"; 10 11 src = fetchurl { 12 url = "https://github.com/mirage/semaphore-compat/releases/download/${finalAttrs.version}/semaphore-compat-${finalAttrs.version}.tbz"; 13 hash = "sha256-4CnZ2vX17IPpnlA7CNeuxZEKfA5HFoeQvwH0tCKNRnY="; 14 }; 15 16 meta = { 17 description = "Compatibility Semaphore module"; 18 homepage = "https://github.com/mirage/semaphore-compat"; 19 license = with lib.licenses; [ 20 lgpl21Plus 21 ocamlLgplLinkingException 22 ]; 23 maintainers = [ lib.maintainers.sternenseemann ]; 24 }; 25})