pixd: init at 1.0.0

This commit is contained in:
Jonas Höglund 2017-11-12 19:32:38 +01:00 committed by Bjørn Forsman
parent 636c9b5c2d
commit bdce9327a1
2 changed files with 26 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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 { };