Skip to content

Commit

Permalink
pixd: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FireyFly authored and bjornfor committed Nov 12, 2017
1 parent 636c9b5 commit bdce932
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/tools/misc/pixd/default.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;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit bdce932

Please sign in to comment.