tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
vcs: substitute standalone getopt outside of linux
Yestin L. Harrison
4 years ago
56cd5ac4
f3e7e37d
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
vcs
default.nix
+6
-2
pkgs/applications/video/vcs/default.nix
···
1
{ lib, stdenv, fetchurl, makeWrapper
2
-
, coreutils, ffmpeg, gawk, gnugrep, gnused, imagemagick, mplayer, util-linux
0
3
, dejavu_fonts
4
}:
5
with lib;
6
let
7
version = "1.13.4";
8
-
runtimeDeps = [ coreutils ffmpeg gawk gnugrep gnused imagemagick mplayer util-linux ];
0
0
0
9
in
10
stdenv.mkDerivation {
11
pname = "vcs";
···
1
{ lib, stdenv, fetchurl, makeWrapper
2
+
, coreutils, ffmpeg, gawk, gnugrep, gnused, imagemagick, mplayer
3
+
, util-linux, getopt
4
, dejavu_fonts
5
}:
6
with lib;
7
let
8
version = "1.13.4";
9
+
gopt = if stdenv.isLinux then util-linux else getopt;
10
+
runtimeDeps = [
11
+
coreutils ffmpeg gawk gnugrep gnused imagemagick mplayer gopt
12
+
];
13
in
14
stdenv.mkDerivation {
15
pname = "vcs";