Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
450 B
Nix
23 lines
450 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rlog";
|
|
version = "1.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://rlog.googlecode.com/files/rlog-${version}.tar.gz";
|
|
sha256 = "0y9zg0pd7vmnskwac1qdyzl282z7kb01nmn57lsg2mjdxgnywf59";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.arg0.net/rlog";
|
|
description = "C++ logging library used in encfs";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.lgpl3;
|
|
};
|
|
}
|