nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt: 1.3.1 -> 1.3.1-unstable-2024-07-16

+7 -6
+7 -6
pkgs/by-name/dt/dt/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 testers, 6 - zig_0_11, 6 + zig_0_12, 7 7 }: 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "dt"; 11 - version = "1.3.1"; 11 + version = "1.3.1-unstable-2024-07-16"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "so-dang-cool"; 15 15 repo = "dt"; 16 - rev = "v${finalAttrs.version}"; 17 - hash = "sha256-qHfvHf4T0wWnzqp5FfLg7n7te24xc2aMEdTK3Iia8Q0="; 16 + rev = "0d16ca2867131e99a93a412231465cf68f2e594f"; 17 + hash = "sha256-pfTlOMJpOPbXZaJJvOKDUyCZxFHNLRRUteJFWT9IKOU="; 18 18 }; 19 19 20 - nativeBuildInputs = [ zig_0_11.hook ]; 20 + nativeBuildInputs = [ zig_0_12.hook ]; 21 21 22 22 passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; 23 23 ··· 37 37 In short, dt is intended to be generally useful, with zero pretense of 38 38 elegance. 39 39 ''; 40 - changelog = "https://github.com/so-dang-cool/dt/releases/tag/v${finalAttrs.version}"; 40 + # TODO: uncomment when dt pushes a new release 41 + # changelog = "https://github.com/so-dang-cool/dt/releases/tag/v${finalAttrs.version}"; 41 42 license = lib.licenses.bsd3; 42 43 maintainers = with lib.maintainers; [ booniepepper ]; 43 44 platforms = lib.platforms.unix;