mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
tabbed: switch to pname+version, move with lib to meta
This commit is contained in:
parent
86bf5eb0bb
commit
023922bcd1
1 changed files with 3 additions and 5 deletions
|
@ -1,10 +1,8 @@
|
|||
{ lib, stdenv, fetchgit, xorgproto, libX11, libXft, customConfig ? null, patches ? [ ] }:
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "tabbed";
|
||||
version = "unstable-20180310";
|
||||
pname = "tabbed";
|
||||
version = "unstable-2018-03-10";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.suckless.org/tabbed";
|
||||
|
@ -24,7 +22,7 @@ stdenv.mkDerivation {
|
|||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://tools.suckless.org/tabbed";
|
||||
description = "Simple generic tabbed fronted to xembed aware applications";
|
||||
license = licenses.mit;
|
||||
|
|
Loading…
Reference in a new issue