aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/l-smash
diff options
context:
space:
mode:
authorTadeo Kondrak <me@tadeo.ca>2019-05-17 22:47:07 -0600
committerLassulus <github@lassul.us>2019-05-26 04:54:57 +0900
commit0dfa25e17c5ad74e6bffd14947dfc9d84aff5d29 (patch)
tree0a66b0b0a84ea1f2df1de3dd2ead32a5ccc1bd54 /pkgs/development/libraries/l-smash
parent0040ca936e475d34a514b480002622e641b52d90 (diff)
l-smash: init at 2.4.15
Diffstat (limited to 'pkgs/development/libraries/l-smash')
-rw-r--r--pkgs/development/libraries/l-smash/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/libraries/l-smash/default.nix b/pkgs/development/libraries/l-smash/default.nix
new file mode 100644
index 000000000000..374d9c398eff
--- /dev/null
+++ b/pkgs/development/libraries/l-smash/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, which }:
+
+stdenv.mkDerivation rec {
+ pname = "l-smash";
+ version = "2.14.5";
+
+ src = fetchFromGitHub {
+ owner = "l-smash";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0rcq9727im6kd8da8b7kzzbzxdldvmh5nsljj9pvr4m3lj484b02";
+ };
+
+ nativeBuildInputs = [ which ];
+
+ meta = with stdenv.lib; {
+ homepage = http://l-smash.github.io/l-smash/;
+ description = "MP4 container utilities";
+ license = licenses.isc;
+ maintainers = with maintainers; [ tadeokondrak ];
+ platforms = platforms.all;
+ };
+}