about summary refs log tree commit diff
path: root/pkgs/applications/misc/filet/default.nix
blob: 2c03c6e76ea24d9030f4aa9384146dd46530a51e (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; [ buffet ];
    mainProgram = "filet";
  };
}