mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
Merge pull request #214596 from trofi/libbsd-update
libbsd: 0.11.6 -> 0.11.7
This commit is contained in:
commit
4abe923106
@ -1,12 +1,18 @@
|
|||||||
{ lib, stdenv, fetchurl, autoreconfHook, libmd }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, autoreconfHook
|
||||||
|
, libmd
|
||||||
|
, gitUpdater
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libbsd";
|
pname = "libbsd";
|
||||||
version = "0.11.6";
|
version = "0.11.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://libbsd.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
url = "https://libbsd.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
||||||
sha256 = "sha256-GbOPMXLq9pPm4caHFGNhkMfkiFHkUiTXILO1vASZtd8=";
|
hash = "sha256-m6oYYFnrvyXAYwjp+ZH9ox9xg8DySTGCbYOqar2KAmE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" "man" ];
|
outputs = [ "out" "dev" "man" ];
|
||||||
@ -18,6 +24,11 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
patches = [ ./darwin.patch ];
|
patches = [ ./darwin.patch ];
|
||||||
|
|
||||||
|
passthru.updateScript = gitUpdater {
|
||||||
|
# No nicer place to find latest release.
|
||||||
|
url = "https://gitlab.freedesktop.org/libbsd/libbsd.git";
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Common functions found on BSD systems";
|
description = "Common functions found on BSD systems";
|
||||||
homepage = "https://libbsd.freedesktop.org/";
|
homepage = "https://libbsd.freedesktop.org/";
|
||||||
|
Loading…
Reference in New Issue
Block a user