about summary refs log tree commit diff
path: root/pkgs/applications/misc/filet/default.nix
blob: d9f7bd91ab2ecba79f200872162a4bd6cbc755f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "filet";
  version = "0.1.3";

  src = fetchFromGitHub {
    owner = "buffet";
    repo = "filet";
    rev = version;
    sha256 = "0hm7589ih30axafqxhhs4fg1pvfhlqzyzzmfi2ilx8haq5111fsf";
  };

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with lib; {
    description = "Fucking fucking fast file fucker (afffff)";
    homepage = "https://github.com/buffet/filet";
    license = licenses.mpl20;
    platforms = platforms.all;
    maintainers = with maintainers; [ ];
    mainProgram = "filet";
  };
}