diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2017-03-05 19:08:25 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2017-03-07 19:41:23 +0800 |
commit | c402743579e3ba745c3f759889c00b52acae05fa (patch) | |
tree | 3f2d46479e3bd28827592a5c6c7ac1560f5441a7 | |
parent | 45321beb7d6cc92ff20ef1811bcc8119bb822ed9 (diff) | |
download | patches-c402743579e3ba745c3f759889c00b52acae05fa.tar patches-c402743579e3ba745c3f759889c00b52acae05fa.tar.gz |
gnu: Add blind.
* gnu/packages/suckless.scm (blind): New package.
-rw-r--r-- | gnu/packages/suckless.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 80a02e1718..ca4cbec91f 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -47,6 +47,33 @@ #:use-module (gnu packages base) #:use-module (gnu packages libbsd)) +(define-public blind + (package + (name "blind") + (version "1.0") + (source (origin + (method url-fetch) + (uri (string-append "http://dl.suckless.org/tools/blind-" + version ".tar.gz")) + (sha256 + (base32 + "1b36k8fg2gmabm69jckqja49i8y4rcbccgvv2wija15ciszrm1x9")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; no check target + #:make-flags (list + "CC=gcc" + (string-append "PREFIX=" %output)) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; no configure script + (synopsis "Command line video editing utilities") + (home-page "http://tools.suckless.org/blind/") + (description + "Blind is a collection of command line video editing utilities. It uses +a custom raw video format with a simple container.") + (license license:isc))) + (define-public dwm (package (name "dwm") |