mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
commit
03f42a04ff
2 changed files with 45 additions and 0 deletions
43
pkgs/applications/video/adl/default.nix
Normal file
43
pkgs/applications/video/adl/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkgs, makeWrapper, ... }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "adl";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "RaitaroH";
|
||||
repo = "adl";
|
||||
rev = "65f68e1dcae4c0caa52668d3a854269e7d226f7c";
|
||||
sha256 = "sha256-huGpDtkWrhZyKDNKXat8T3qtAyMjBaq8HFd1w1ThUVk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
# https://github.com/RaitaroH/adl#requirements
|
||||
buildInputs = with pkgs; [
|
||||
anime-downloader
|
||||
frece
|
||||
fzf
|
||||
mpv
|
||||
perl
|
||||
trackma
|
||||
ueberzug
|
||||
];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src/adl $out/bin
|
||||
wrapProgram $out/bin/adl \
|
||||
--prefix PATH : ${lib.makeBinPath buildInputs}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/RaitaroH/adl";
|
||||
description = "popcorn anime-downloader + trackma wrapper";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ WeebSorceress ];
|
||||
};
|
||||
}
|
|
@ -25508,6 +25508,8 @@ with pkgs;
|
|||
|
||||
adobe-reader = pkgsi686Linux.callPackage ../applications/misc/adobe-reader { };
|
||||
|
||||
adl = callPackage ../applications/video/adl { };
|
||||
|
||||
appvm = callPackage ../applications/virtualization/appvm { };
|
||||
|
||||
yggdrasil = callPackage ../tools/networking/yggdrasil { };
|
||||
|
|
Loading…
Reference in a new issue