Files
nixpkgs/pkgs/development/libraries/libmicrohttpd/1.0.nix
Wolfgang Walther 91a8fee3aa treewide: remove redundant parentheses
Auto-fixed by nixf-diagnose.
2025-10-05 10:52:03 +02:00

11 lines
246 B
Nix

{ callPackage, fetchurl }:
callPackage ./generic.nix rec {
version = "1.0.2";
src = fetchurl {
url = "mirror://gnu/libmicrohttpd/libmicrohttpd-${version}.tar.gz";
hash = "sha256-3zJPzQg0F12rB0gxM5Atl3SmBb+imAJfaYgyiP0gqMc=";
};
}