lol
1{ stdenv, fetchFromGitHub }:
2
3with stdenv.lib;
4
5stdenv.mkDerivation rec {
6 name = "pixd-${version}";
7 version = "1.0.0";
8
9 src = fetchFromGitHub {
10 owner = "FireyFly";
11 repo = "pixd";
12 rev = "v${version}";
13 sha256 = "1vmkbs39mg5vwmkzfcrxqm6p8zr9sj4qdwng9icmyf5k34c34xdg";
14 };
15
16 makeFlags = [ "PREFIX=$(out)" ];
17
18 meta = {
19 description = "Colourful visualization tool for binary files";
20 homepage = https://github.com/FireyFly/pixd;
21 maintainers = [ maintainers.FireyFly ];
22 license = licenses.mit;
23 platforms = platforms.unix;
24 };
25}