Compare commits

...

3 Commits

Author SHA1 Message Date
Simon Bruder 72d323ca04
x264-unstable: drop
It has been updated in nixpkgs.
2021-12-01 20:59:48 +01:00
Simon Bruder 7ca0b97fa8
oha: drop
It has been added to nixpkgs.
2021-12-01 20:59:16 +01:00
Simon Bruder c5bf79a64d
cyanrip: drop
It has been added to nixpkgs.
2021-12-01 20:58:07 +01:00
5 changed files with 1 additions and 91 deletions

View File

@ -1,35 +0,0 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, ffmpeg
, libcdio
, libcdio-paranoia
, curl
, libmusicbrainz5
}:
stdenv.mkDerivation rec {
pname = "cyanrip";
version = "0.7.0";
src = fetchFromGitHub {
owner = "cyanreg";
repo = pname;
rev = "v${version}";
sha256 = "0lgb92sfpf4w3nj5vlj6j7931mj2q3cmcx1app9snf853jk9ahmw";
};
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ ffmpeg libcdio libcdio-paranoia curl libmusicbrainz5 ];
meta = with lib; {
description = "Fully featured CD ripping program able to take out most of the tedium";
homepage = "https://github.com/cyanreg/cyanrip";
license = with licenses; [ lgpl21Plus lgpl3Plus ]; # some files have lgpl21Plus header, repo has lgpl3Plus LICENSE
maintainers = with maintainers; [ sbruder ];
platforms = platforms.unix;
};
}

View File

@ -19,8 +19,6 @@ in
colorchord2 = callPackage ./colorchord2 { };
cyanrip = callPackage ./cyanrip { };
deemix = callPythonPackage ./deemix { };
fSpy = callPackage ./fSpy { };
@ -39,8 +37,6 @@ in
nsz = callPythonPackage ./nsz { };
oha = callPackage ./oha { };
playgsf = callPackage ./playgsf { };
snownews = callPackage ./snownews { };
@ -52,6 +48,4 @@ in
vgmstream = callPackage ./vgmstream { };
VisiCut = callPackage ./VisiCut { };
x264-unstable = prev.x264.overrideAttrs (callPackage ./x264-unstable { });
}

View File

@ -48,7 +48,6 @@
inherit (pkgs)
VisiCut
colorchord2
cyanrip
deemix
fSpy
face_morpher
@ -56,13 +55,11 @@
hcloud_exporter
netstick
nsz
oha
playgsf
snownews
textidote
unxwb
vgmstream
x264-unstable;
vgmstream;
mpvScripts = lib.recurseIntoAttrs {
inherit (pkgs.mpvScripts)

View File

@ -1,28 +0,0 @@
{ lib, rustPlatform, fetchFromGitHub, openssl, pkg-config }:
rustPlatform.buildRustPackage rec {
pname = "oha";
version = "0.4.5";
src = fetchFromGitHub {
owner = "hatoo";
repo = pname;
rev = "v${version}";
sha256 = "0grq9qk34i1k1nmw77d0f19qxq5f4hqax7x1pjrqmq972ix194wr";
};
cargoSha256 = "14cc4hzg755brmr657mbmiqwbf26sn252vn4cywp0zs6y63mmxfw";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
doCheck = false; # tests require network
meta = with lib; {
description = "HTTP load generator, inspired by rakyll/hey with tui animation";
homepage = "https://github.com/hatoo/oha";
license = with licenses; [ mit ];
maintainers = with maintainers; [ sbruder ];
platforms = platforms.unix;
};
}

View File

@ -1,18 +0,0 @@
{ lib, fetchFromGitLab }:
o: o // rec {
version = "unstable-2021-04-19";
src = fetchFromGitLab {
domain = "code.videolan.org";
owner = "videolan";
repo = o.pname;
rev = "b684ebe04a6f80f8207a57940a1fa00e25274f81";
sha256 = "06r6m1v88m532wbhk6al9imrsn1inwdjzrpmp97wrbdg6b2naygd";
};
meta = with lib; o.meta // {
description = "${o.meta.description} (unstable version)";
maintainers = with maintainers; [ sbruder ];
};
}