mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
fbv: init at 1.0b
This commit is contained in:
parent
0a7e258012
commit
0932acc622
25
pkgs/tools/graphics/fbv/default.nix
Normal file
25
pkgs/tools/graphics/fbv/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, getopt, libjpeg, libpng12, libungif }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fbv-1.0b";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://s-tech.elsat.net.pl/fbv/${name}.tar.gz";
|
||||
sha256 = "0g5b550vk11l639y8p5sx1v1i6ihgqk0x1hd0ri1bc2yzpdbjmcv";
|
||||
};
|
||||
|
||||
buildInputs = [ getopt libjpeg libpng12 libungif ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/{bin,man/man1}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "View pictures on a linux framebuffer device";
|
||||
homepage = http://s-tech.elsat.net.pl/fbv/;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
}
|
@ -2588,6 +2588,8 @@ with pkgs;
|
||||
|
||||
feedgnuplot = callPackage ../tools/graphics/feedgnuplot { };
|
||||
|
||||
fbv = callPackage ../tools/graphics/fbv { };
|
||||
|
||||
fim = callPackage ../tools/graphics/fim { };
|
||||
|
||||
flac123 = callPackage ../applications/audio/flac123 { };
|
||||
|
Loading…
Reference in New Issue
Block a user