1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/development/libraries/libmicrohttpd/1.0.nix

11 lines
248 B
Nix

{ callPackage, fetchurl }:
callPackage ./generic.nix (rec {
version = "1.0.1";
src = fetchurl {
url = "mirror://gnu/libmicrohttpd/libmicrohttpd-${version}.tar.gz";
hash = "sha256-qJ4J/JtN403eGfT8tPqqHOECmbmQjbETK7+h3keIK5Q=";
};
})