mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
pixd: init at 1.0.0
This commit is contained in:
parent
636c9b5c2d
commit
bdce9327a1
25
pkgs/tools/misc/pixd/default.nix
Normal file
25
pkgs/tools/misc/pixd/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user