nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 22 lines 471 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation (finalAttrs: { 8 pname = "rlog"; 9 version = "1.4"; 10 11 src = fetchurl { 12 url = "http://rlog.googlecode.com/files/rlog-${finalAttrs.version}.tar.gz"; 13 sha256 = "0y9zg0pd7vmnskwac1qdyzl282z7kb01nmn57lsg2mjdxgnywf59"; 14 }; 15 16 meta = { 17 homepage = "https://www.arg0.net/rlog"; 18 description = "C++ logging library used in encfs"; 19 platforms = lib.platforms.linux; 20 license = lib.licenses.lgpl3; 21 }; 22})