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: ca3fe591738f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14850326865c
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 13, 2019

  1. shell-hist: init at 0.1.0

    spacekookie authored and Lassulus committed May 13, 2019
    Copy the full SHA
    1485032 View commit details
Showing with 25 additions and 0 deletions.
  1. +23 −0 pkgs/tools/misc/shell-hist/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
23 changes: 23 additions & 0 deletions pkgs/tools/misc/shell-hist/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage {
pname = "shell-hist";
version = "0.1.0";

src = fetchFromGitHub {
owner = "jamesmunns";
repo = "shell-hist";
rev = "158de8c3908b49530ecd76bf6e65c210f351ef82";
sha256 = "0kc128xnnp1d56if70vfv0w3qnwhljhbnvzwwb7hfm3x2m0vqrqf";
};

cargoSha256 = "1nqnkzwqk879qy1261g1gds668xz6islhzq7chzhilaqpmvf6039";

meta = with lib; {
description = "Inspect your shell history";
homepage = "https://github.com/jamesmunns/shell-hist";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = [ maintainers.spacekookie ];
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
@@ -1762,6 +1762,8 @@ in

shab = callPackage ../tools/text/shab { };

shell-hist = callPackage ../tools/misc/shell-hist { };

simg2img = callPackage ../tools/filesystems/simg2img { };

snipes = callPackage ../games/snipes { };