pixd: init at 1.0.0

wip/yesman
Jonas Höglund 7 years ago committed by Bjørn Forsman
parent 636c9b5c2d
commit bdce9327a1
  1. 25
      pkgs/tools/misc/pixd/default.nix
  2. 1
      pkgs/top-level/all-packages.nix

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "pixd-${version}";
version = "1.0.0";
src = fetchFromGitHub {
owner = "FireyFly";
repo = "pixd";
rev = "v${version}";
sha256 = "1vmkbs39mg5vwmkzfcrxqm6p8zr9sj4qdwng9icmyf5k34c34xdg";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Colourful visualization tool for binary files";
homepage = https://github.com/FireyFly/pixd;
maintainers = [ maintainers.FireyFly ];
license = licenses.mit;
platforms = platforms.unix;
};
}

@ -2600,6 +2600,7 @@ with pkgs;
hevea = callPackage ../tools/typesetting/hevea { };
hexd = callPackage ../tools/misc/hexd { };
pixd = callPackage ../tools/misc/pixd { };
hhpc = callPackage ../tools/misc/hhpc { };

Loading…
Cancel
Save