1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/filet/default.nix

24 lines
552 B
Nix
Raw Normal View History

2019-03-03 12:22:41 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "filet";
2019-03-08 20:39:47 +00:00
version = "0.1.3";
2019-03-03 12:22:41 +00:00
src = fetchFromGitHub {
owner = "buffet";
repo = "filet";
rev = version;
2019-03-08 20:39:47 +00:00
sha256 = "0hm7589ih30axafqxhhs4fg1pvfhlqzyzzmfi2ilx8haq5111fsf";
2019-03-03 12:22:41 +00:00
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "A fucking fucking fast file fucker (afffff)";
homepage = https://github.com/buffet/filet;
license = licenses.mpl20;
2019-03-08 20:39:47 +00:00
platforms = platforms.all;
2019-03-03 12:22:41 +00:00
maintainers = with maintainers; [ buffet ];
};
}