Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9ba1f2298285
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b76c3427cfe6
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 25, 2021

  1. tkrzw: init at 0.9.3

    ehmry committed Jan 25, 2021
    Copy the full SHA
    b76c342 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/development/libraries/tkrzw/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/development/libraries/tkrzw/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
pname = "tkrzw";
version = "0.9.3";
# TODO: defeat multi-output reference cycles

src = fetchurl {
url = "https://dbmx.net/tkrzw/pkg/tkrzw-${version}.tar.gz";
sha256 = "1ap93fsw7vhn329kvy8g20l8p4jdygfl8r8mrgsfcpa20a29fnwl";
};

enableParallelBuilding = true;

doCheck = false; # memory intensive

meta = with lib; {
description = "A set of implementations of DBM";
homepage = "https://dbmx.net/tkrzw/";
maintainers = with maintainers; [ ehmry ];
license = licenses.asl20;
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16812,6 +16812,8 @@ in
tk-8_6 = callPackage ../development/libraries/tk/8.6.nix { };
tk-8_5 = callPackage ../development/libraries/tk/8.5.nix { tcl = tcl-8_5; };

tkrzw = callPackage ../development/libraries/tkrzw { };

tl-expected = callPackage ../development/libraries/tl-expected { };

tnt = callPackage ../development/libraries/tnt { };