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: 5c000e983c9d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3804ef880cf1
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2020

  1. tmatrix: 1.1 -> 1.3

    - Use installManPage from installShellFiles
    Br1ght0ne committed Jan 16, 2020
    Copy the full SHA
    e35533b View commit details
  2. Copy the full SHA
    026ac88 View commit details
  3. Merge pull request #77825 from filalex77/tmatrix-1.3

    tmatrix: 1.1 -> 1.3
    teto authored Jan 16, 2020
    Copy the full SHA
    3804ef8 View commit details
Showing with 12 additions and 7 deletions.
  1. +12 −7 pkgs/applications/misc/tmatrix/default.nix
19 changes: 12 additions & 7 deletions pkgs/applications/misc/tmatrix/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{ stdenv, lib, fetchFromGitHub, cmake, ncurses }:
{ stdenv
, lib
, fetchFromGitHub
, cmake
, installShellFiles
, ncurses
}:

stdenv.mkDerivation rec {
pname = "tmatrix";
version = "1.1";
version = "1.3";

src = fetchFromGitHub {
owner = "M4444";
repo = "TMatrix";
rev = "v${version}";
sha256 = "1x9drk3wdsd6vzcypk3x068sqcbgis488s9fhcpsv8xgb496rd6y";
sha256 = "1cvgxmdpdzpl8w4z3sh4g5pbd15rd8s1kcspi9v95yf9rydyy69s";
};

nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake installShellFiles ];
buildInputs = [ ncurses ];

postInstall = ''
mkdir -p $out/share/man/man6
install -m 0644 ../tmatrix.6 $out/share/man/man6
installManPage ../tmatrix.6
'';

meta = with lib; {
@@ -30,6 +35,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/M4444/TMatrix";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ infinisil ];
maintainers = with maintainers; [ infinisil filalex77 ];
};
}