nixos-config/nixos/pkgs/terminal-tools/default.nix

28 lines
735 B
Nix
Raw Normal View History

{ rustPlatform, fetchgit, lib, ... }:
2019-12-31 01:40:49 +01:00
rustPlatform.buildRustPackage rec {
name = "terminal-tools-${version}";
version = "0.1.0";
#src = ./.;
src = fetchgit {
url = "https://git.ingolf-wagner.de/palo/terminal-tools";
2019-12-31 09:56:47 +01:00
rev = "816cfd8eae8f8136437e4076116e0267c6a6eb0d";
sha256 = "07zf716wy0rqpzwj580haw935lj5ih0wzhfn26dq83kf9nm09iyg";
2019-12-31 01:40:49 +01:00
};
cargoSha256 = "0dgbw6idlzzpgljv0lxavimh1h8qlib0qrcn92f5imy6a12phrmm";
verifyCargoDeps = true;
meta = with lib; {
2019-12-31 01:40:49 +01:00
description = "tools I use in my shell scripts which should be fast";
homepage = "https://git.ingolf-wagner.de/palo/terminal-tools";
2020-05-16 02:25:06 +02:00
license = licenses.gpl3;
2019-12-31 01:40:49 +01:00
maintainers = [ maintainers.mrVanDalo ];
platforms = platforms.all;
};
}